VMware GemFire Java API Reference
Package org.apache.geode.json
Class JsonParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.geode.GemFireCheckedException
org.apache.geode.json.JsonParseException
- All Implemented Interfaces:
Serializable
This exception will be thrown, when
JsonDocumentFactory is unable to parse the JSON
string.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJsonParseException(String message) Create the exception with the given message.JsonParseException(String message, Throwable cause) Create the exception with the given message and cause. -
Method Summary
Methods inherited from class org.apache.geode.GemFireCheckedException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JsonParseException
Create the exception with the given message.- Parameters:
message- the message of the new exception
-
JsonParseException
Create the exception with the given message and cause.- Parameters:
message- the message of the new exceptioncause- the cause of the new exception
-