Gemfire JavaDocs_test
Package org.apache.geode.pdx
Class JSONFormatterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.geode.GemFireException
-
- org.apache.geode.pdx.JSONFormatterException
-
- All Implemented Interfaces:
java.io.Serializable
public class JSONFormatterException extends GemFireException
This exception will be thrown, when {link @JSONFormatter} is unable to parse the JSON document or {link @PdxInstance}.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JSONFormatterException(java.lang.String message)
Create the exception with the given message.JSONFormatterException(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.GemFireException
getRootCause
-
-
-
-
Constructor Detail
-
JSONFormatterException
public JSONFormatterException(java.lang.String message)
Create the exception with the given message.- Parameters:
message
- the message of the new exception
-
JSONFormatterException
public JSONFormatterException(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
-
-