C# Class xFunc.Maths.ParserException

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

Public Methods

Method Description
ParserException ( ) : System

Initializes a new instance of the ParserException class.

ParserException ( string message ) : System

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

ParserException ( string message, Exception inner ) : System

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

Protected Methods

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

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

Method Details

ParserException() public method

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

ParserException() protected method

Initializes a new instance of the ParserException class with serialized data.
protected ParserException ( 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

ParserException() public method

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

ParserException() public method

Initializes a new instance of the ParserException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public ParserException ( 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