org.apache.commons.lang
public class SerializationException extends NestableRuntimeException
Exception thrown when the Serialization process fails.
The original error is wrapped within this one.
Since: 1.0
Version: $Id: SerializationException.java 437554 2006-08-28 06:21:41Z bayard $
| Constructor Summary | |
|---|---|
| SerializationException() Constructs a new | |
| SerializationException(String msg) Constructs a new | |
| SerializationException(Throwable cause) Constructs a new | |
| SerializationException(String msg, Throwable cause) Constructs a new | |
Constructs a new SerializationException without specified
detail message.
Constructs a new SerializationException with specified
detail message.
Parameters: msg The error message.
Constructs a new SerializationException with specified
nested Throwable.
Parameters: cause The Exception or Error
that caused this exception to be thrown.
Constructs a new SerializationException with specified
detail message and nested Throwable.
Parameters: msg The error message. cause The Exception or Error
that caused this exception to be thrown.