Class LexerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.dynatrace.openkit.util.json.lexer.LexerException
-
- All Implemented Interfaces:
java.io.Serializable
public class LexerException extends java.lang.ExceptionException class thrown by the lexical analyzer in case of error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LexerException(java.lang.String message)Constructor taking an exception message.LexerException(java.lang.String message, java.lang.Throwable throwable)Constructor taking an exception message and a nestedThrowable.
-
-
-
Constructor Detail
-
LexerException
public LexerException(java.lang.String message)
Constructor taking an exception message.- Parameters:
message- The message describing the cause of this exception.
-
LexerException
public LexerException(java.lang.String message, java.lang.Throwable throwable)Constructor taking an exception message and a nestedThrowable.- Parameters:
message- The message describing the cause of this exception.throwable- The nestedThrowableoriginally causing this exception.
-
-