Table of Contents

Class ParseException

Namespace
xFunc.Maths
Assembly
xFunc.Maths.dll

The exception that is thrown in the process of parsing expression tree.

[Serializable]
public class ParseException : Exception, ISerializable
Inheritance
ParseException
Implements
Inherited Members

Constructors

ParseException()

Initializes a new instance of the ParseException class.

public ParseException()

ParseException(string)

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

public ParseException(string message)

Parameters

message string

A string that describes the error.

ParseException(string, Exception)

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

public ParseException(string message, Exception inner)

Parameters

message string

A string that describes the error.

inner Exception

The exception that is the cause of the current exception.