C# Class xFunc.Maths.LexerException

Inheritance: System.Exception
Mostra file Open project: sys27/xFunc

Public Methods

Method Description
LexerException ( ) : System

Initializes a new instance of the LexerException class.

LexerException ( string message ) : System

Initializes a new instance of the LexerException class with a specified error message.

LexerException ( string message, Exception inner ) : System

Initializes a new instance of the LexerException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Protected Methods

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

Initializes a new instance of the LexerException class with serialized data.

Method Details

LexerException() public method

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

LexerException() protected method

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

LexerException() public method

Initializes a new instance of the LexerException class with a specified error message.
public LexerException ( string message ) : System
message string A that describes the error.
return System

LexerException() public method

Initializes a new instance of the LexerException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public LexerException ( string message, Exception inner ) : System
message string A that describes the error.
inner System.Exception The exception that is the cause of the current exception.
return System