public class SerializationException
extends java.lang.RuntimeException
RuntimeException indicating an error occurred while attempting to
serialize a Session.RuntimeException,
Serialized Form| Constructor 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),
Stringpublic SerializationException(java.lang.Throwable cause)
SerializationException initialized with the given cause
of the serialization error.cause - underlying cause of the serialization error.RuntimeException(Throwable),
Throwablepublic 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