public class ParsingFailedException
extends java.lang.Exception
| Constructor and Description |
|---|
ParsingFailedException(java.lang.String message,
java.lang.String json)
Constructs a parse exception object.
|
ParsingFailedException(java.lang.String message,
java.lang.String json,
java.lang.Exception exception)
Constructs a parse exception object.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Exception |
getInnerException()
Gets the inner exception.
|
java.lang.String |
getJson()
Gets the json string which was failed to parse.
|
public ParsingFailedException(java.lang.String message,
java.lang.String json,
java.lang.Exception exception)
message - the message of the exception.json - the json string which was failed to parse.exception - the inner exception.public ParsingFailedException(java.lang.String message,
java.lang.String json)
message - the message of the exception.json - the json string which was failed to parse.