C# Class Homehook.Exceptions.UnprocessableEntityException

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

Public Methods

Method Description
UnprocessableEntityException ( ) : System

Default constructor.

UnprocessableEntityException ( string message ) : System

Default constructor with message.

UnprocessableEntityException ( string message, Exception innerException ) : System

Default constructor with message and inner exception.

Protected Methods

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

Default constructor with which to serialize.

Method Details

UnprocessableEntityException() public method

Default constructor.
public UnprocessableEntityException ( ) : System
return System

UnprocessableEntityException() protected method

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

UnprocessableEntityException() public method

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

UnprocessableEntityException() public method

Default constructor with message and inner exception.
public UnprocessableEntityException ( 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