Gemfire JavaDocs_test
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:
java.io.Serializable
- Direct Known Subclasses:
NonPortableClassException
public class PdxSerializationException extends SerializationException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PdxSerializationException(java.lang.String message)
Create the exception with the given message.PdxSerializationException(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
-
PdxSerializationException
public PdxSerializationException(java.lang.String message)
Create the exception with the given message.- Parameters:
message
- the message of the new exception
-
PdxSerializationException
public PdxSerializationException(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
-
-