C# Class Homehook.Exceptions.ForbiddenException

Inheritance: Homehook.Exceptions.CommunicationException
Show file Open project: MattMckenzy/Homehook

Public Methods

Method Description
ForbiddenException ( ) : System

Default constructor.

ForbiddenException ( string message ) : System

Default constructor with message.

ForbiddenException ( string message, Exception innerException ) : System

Default constructor with message and inner exception.

Protected Methods

Method Description
ForbiddenException ( SerializationInfo info, StreamingContext context ) : System

Default constructor with which to serialize.

Method Details

ForbiddenException() public method

Default constructor.
public ForbiddenException ( ) : System
return System

ForbiddenException() protected method

Default constructor with which to serialize.
protected ForbiddenException ( SerializationInfo info, StreamingContext context ) : System
info SerializationInfo The serialization info to use.
context StreamingContext The streaming context to use.
return System

ForbiddenException() public method

Default constructor with message.
public ForbiddenException ( string message ) : System
message string The message to set in the exception.
return System

ForbiddenException() public method

Default constructor with message and inner exception.
public ForbiddenException ( string message, Exception innerException ) : System
message string The message to set in the exception.
innerException Exception The inner exception to set in the exception.
return System