Class TokenizeException
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
charThe unsupported symbol.
TokenizeException(string)
Initializes a new instance of the TokenizeException class with a specified error message.
public TokenizeException(string message)
Parameters
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
stringA string that describes the error.
inner
ExceptionThe exception that is the cause of the current exception.