Class ParserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.dynatrace.openkit.util.json.parser.ParserException
-
- All Implemented Interfaces:
java.io.Serializable
public class ParserException extends java.lang.ExceptionException class thrown by the JSON parser in case of error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParserException(java.lang.String message)Constructor taking an exception message.ParserException(java.lang.String message, java.lang.Throwable throwable)Constructor taking an exception message and a nestedThrowable.
-
-
-
Constructor Detail
-
ParserException
public ParserException(java.lang.String message)
Constructor taking an exception message.- Parameters:
message- The message describing the cause of this exception.
-
ParserException
public ParserException(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.
-
-