C# Class CrossroadsIO.XsException

Inheritance: System.Exception
显示文件 Open project: jgoz/crossroads-net

Public Methods

Method Description
XsException ( int errorCode ) : System

Initializes a new instance of the XsException class.

XsException ( int errorCode, string message ) : System

Initializes a new instance of the XsException class.

XsException ( int errorCode, string message, Exception inner ) : System

Initializes a new instance of the XsException class.

Protected Methods

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

Initializes a new instance of the XsException class.

Private Methods

Method Description
GetErrorName ( int errorCode ) : string
XsException ( ErrorDetails errorDetails ) : System

Method Details

XsException() protected method

Initializes a new instance of the XsException class.
protected XsException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext that contains contextual information about the source or destination.
return System

XsException() public method

Initializes a new instance of the XsException class.
public XsException ( int errorCode ) : System
errorCode int The error code returned by the Crossroads I/O library call.
return System

XsException() public method

Initializes a new instance of the XsException class.
public XsException ( int errorCode, string message ) : System
errorCode int The error code returned by the Crossroads I/O library call.
message string The message that describes the error
return System

XsException() public method

Initializes a new instance of the XsException class.
public XsException ( int errorCode, string message, Exception inner ) : System
errorCode int The error code returned by the Crossroads I/O library call.
message string The message that describes the error
inner System.Exception The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
return System