public class SerializationException
extends java.lang.RuntimeException
RuntimeException
indicating an error occurred while attempting to
serialize a Session
.RuntimeException
,
Serialized FormConstructor and Description |
---|
SerializationException()
|
SerializationException(java.lang.String message)
Constructs a new instance of
SerializationException initialized with the given message
describing the serialization error. |
SerializationException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new instance of
SerializationException initialized with the given message
describing the serialization error and cause of the serialization error. |
SerializationException(java.lang.Throwable cause)
Constructs a new instance of
SerializationException initialized with the given cause
of the serialization error. |
public SerializationException()
RuntimeException()
public SerializationException(java.lang.String message)
SerializationException
initialized with the given message
describing the serialization error.message
- String
describing the serialization error.RuntimeException(String)
,
String
public SerializationException(java.lang.Throwable cause)
SerializationException
initialized with the given cause
of the serialization error.cause
- underlying cause
of the serialization error.RuntimeException(Throwable)
,
Throwable
public SerializationException(java.lang.String message, java.lang.Throwable cause)
SerializationException
initialized with the given message
describing the serialization error and cause
of the serialization error.message
- String
describing the serialization error.cause
- underlying cause
of the serialization error.RuntimeException(String, Throwable)
,
Throwable
,
String