Table of Contents

Class TokenizeException

Namespace
xFunc.Maths
Assembly
xFunc.Maths.dll

The exception that is thrown in the process of tokenization.

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

Constructors

TokenizeException()

Initializes a new instance of the TokenizeException class.

public TokenizeException()

TokenizeException(char)

Initializes a new instance of the TokenizeException class.

public TokenizeException(char symbol)

Parameters

symbol char

The unsupported symbol.

TokenizeException(string)

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

public TokenizeException(string message)

Parameters

message string

A string that describes the error.

TokenizeException(string, Exception)

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

public TokenizeException(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.

See Also