Class SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.session.data.gemfire.serialization.SerializationException
- All Implemented Interfaces:
Serializable
The SerializationException class is a
RuntimeException
indicating an error occurred while attempting to
serialize a Session
.- Since:
- 2.0.0
- See Also:
-
Constructor Summary
ConstructorDescriptionSerializationException
(String message) Constructs a new instance ofSerializationException
initialized with the givenmessage
describing the serialization error.SerializationException
(String message, Throwable cause) Constructs a new instance ofSerializationException
initialized with the givenmessage
describing the serialization error andcause
of the serialization error.SerializationException
(Throwable cause) Constructs a new instance ofSerializationException
initialized with the givencause
of the serialization error. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SerializationException
public SerializationException()- See Also:
-
SerializationException
Constructs a new instance ofSerializationException
initialized with the givenmessage
describing the serialization error.- Parameters:
message
-String
describing the serialization error.- See Also:
-
SerializationException
Constructs a new instance ofSerializationException
initialized with the givencause
of the serialization error.- Parameters:
cause
-underlying cause
of the serialization error.- See Also:
-
SerializationException
Constructs a new instance ofSerializationException
initialized with the givenmessage
describing the serialization error andcause
of the serialization error.- Parameters:
message
-String
describing the serialization error.cause
-underlying cause
of the serialization error.- See Also:
-