C# Class Mite.MiteException

Inheritance: System.Exception
显示文件 Open project: ccellar/mite.net Class Usage Examples

Public Methods

Method Description
MiteException ( ) : System

Initializes a new instance of the MiteException class.

MiteException ( string message ) : System

Initializes a new instance of the MiteException class.

MiteException ( string message, Exception innerException ) : System

Initializes a new instance of the MiteException class.

Protected Methods

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

Initializes a new instance of the MiteException class.

Private Methods

Method Description
CreateFromResponse ( string response, Exception innerException ) : MiteException

Method Details

MiteException() public method

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

MiteException() protected method

Initializes a new instance of the MiteException class.
/// The parameter is null. /// /// The class name is null or is zero (0). ///
protected MiteException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

MiteException() public method

Initializes a new instance of the MiteException class.
public MiteException ( string message ) : System
message string The exception message.
return System

MiteException() public method

Initializes a new instance of the MiteException class.
public MiteException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
return System