Class TokenizeException
The exception that is thrown in the process of tokenization.
[ExcludeFromCodeCoverage]
[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
symbolcharThe 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
messagestringA string that describes the error.
innerExceptionThe exception that is the cause of the current exception.