Gemfire JavaDocs
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:
java.io.Serializable
public class JsonParseException extends GemFireCheckedException
This exception will be thrown, whenJsonDocumentFactory
is unable to parse the JSON string.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JsonParseException(java.lang.String message)
Create the exception with the given message.JsonParseException(java.lang.String message, java.lang.Throwable cause)
Create the exception with the given message and cause.
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireCheckedException
getRootCause
-
-
-
-
Constructor Detail
-
JsonParseException
public JsonParseException(java.lang.String message)
Create the exception with the given message.- Parameters:
message
- the message of the new exception
-
JsonParseException
public JsonParseException(java.lang.String message, java.lang.Throwable cause)
Create the exception with the given message and cause.- Parameters:
message
- the message of the new exceptioncause
- the cause of the new exception
-
-