com.ibm.wsspi.rrd.exception
Class SerializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.servlet.ServletException
-
- com.ibm.wsspi.rrd.exception.RRDException
-
- com.ibm.wsspi.rrd.exception.SerializationException
-
- All Implemented Interfaces:
- java.io.Serializable
public class SerializationException extends RRDException
The SerializationException class defines an exception that can occur when serializing or deserializing an RRD message.- Since:
- WAS6.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description SerializationException()Constructs a new SerializationExceptionSerializationException(java.lang.String message)Constructs a new SerializationException with the specified messageSerializationException(java.lang.String message, java.lang.Throwable cause)Constructs a new SerializationException with the specified message and root cause.SerializationException(java.lang.Throwable cause)Constructs a new SerializationException with the specified root cause.
-
-
-
Constructor Detail
-
SerializationException
public SerializationException()
Constructs a new SerializationException
-
SerializationException
public SerializationException(java.lang.String message)
Constructs a new SerializationException with the specified message- Parameters:
message- Message of exception
-
SerializationException
public SerializationException(java.lang.String message, java.lang.Throwable cause)Constructs a new SerializationException with the specified message and root cause.- Parameters:
message- Message of exceptioncause- Exception that caused this exception to be raised
-
SerializationException
public SerializationException(java.lang.Throwable cause)
Constructs a new SerializationException with the specified root cause.- Parameters:
cause- Exception that caused this exception to be raised
-
-