C# Class IronPigeon.InvalidMessageException

An exception thrown when an error occurs while reading a message.
Inheritance: System.Exception
显示文件 Open project: AArnott/IronPigeon Class Usage Examples

Public Methods

Method Description
InvalidMessageException ( ) : System

Initializes a new instance of the InvalidMessageException class.

InvalidMessageException ( string message ) : System

Initializes a new instance of the InvalidMessageException class.

InvalidMessageException ( string message, Exception inner ) : System

Initializes a new instance of the InvalidMessageException class.

Method Details

InvalidMessageException() public method

Initializes a new instance of the InvalidMessageException class.
public InvalidMessageException ( ) : System
return System

InvalidMessageException() public method

Initializes a new instance of the InvalidMessageException class.
public InvalidMessageException ( string message ) : System
message string The message that describes the error.
return System

InvalidMessageException() public method

Initializes a new instance of the InvalidMessageException class.
public InvalidMessageException ( string message, Exception inner ) : System
message string The error message that explains the reason for the exception.
inner System.Exception The inner exception.
return System