C# Class CrossroadsIO.XsVersionException

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

Public Methods

Method Description
XsVersionException ( ) : System

Initializes a new instance of the XsVersionException class.

XsVersionException ( int major, int minor, int requiredMajor, int requiredMinor ) : System

Initializes a new instance of the XsVersionException class.

XsVersionException ( string message ) : System

Initializes a new instance of the XsVersionException class.

XsVersionException ( string message, Exception inner ) : System

Initializes a new instance of the XsVersionException class.

Protected Methods

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

Initializes a new instance of the XsVersionException class.

Method Details

XsVersionException() public method

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

XsVersionException() protected method

Initializes a new instance of the XsVersionException class.
protected XsVersionException ( 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

XsVersionException() public method

Initializes a new instance of the XsVersionException class.
public XsVersionException ( int major, int minor, int requiredMajor, int requiredMinor ) : System
major int The current major XS version.
minor int The current minor XS version.
requiredMajor int The required major XS version.
requiredMinor int The required minor XS version.
return System

XsVersionException() public method

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

XsVersionException() public method

Initializes a new instance of the XsVersionException class.
public XsVersionException ( string message, Exception inner ) : System
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