Package org.apache.geode.pdx
Class PdxSerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.geode.GemFireException
org.apache.geode.GemFireIOException
org.apache.geode.SerializationException
org.apache.geode.pdx.PdxSerializationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NonPortableClassException
Thrown if a problem occurred during serialization or deserialization of a PDX. In most cases
consult the cause for a description of the problem.
- Since:
- GemFire 6.6
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPdxSerializationException(String message) Create the exception with the given message.PdxSerializationException(String message, Throwable cause) Create the exception with the given message and cause. -
Method Summary
Methods inherited from class org.apache.geode.GemFireException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PdxSerializationException
Create the exception with the given message.- Parameters:
message- the message of the new exception
-
PdxSerializationException
Create the exception with the given message and cause.- Parameters:
message- the message of the new exceptioncause- the cause of the new exception
-