org.apache.commons.lang3
Class SerializationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.apache.commons.lang3.SerializationException
All Implemented Interfaces:
Serializable

public class SerializationException
extends RuntimeException

Exception thrown when the Serialization process fails.

The original error is wrapped within this one.

#NotThreadSafe# because Throwable is not threadsafe

Since:
1.0
Version:
$Id: SerializationException.java 1088899 2011-04-05 05:31:27Z bayard $
See Also:
Serialized Form

Constructor Summary
SerializationException()
          Constructs a new SerializationException without specified detail message.
SerializationException(String msg)
          Constructs a new SerializationException with specified detail message.
SerializationException(String msg, Throwable cause)
          Constructs a new SerializationException with specified detail message and nested Throwable.
SerializationException(Throwable cause)
          Constructs a new SerializationException with specified nested Throwable.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SerializationException

public SerializationException()

Constructs a new SerializationException without specified detail message.


SerializationException

public SerializationException(String msg)

Constructs a new SerializationException with specified detail message.

Parameters:
msg - The error message.

SerializationException

public SerializationException(Throwable cause)

Constructs a new SerializationException with specified nested Throwable.

Parameters:
cause - The Exception or Error that caused this exception to be thrown.

SerializationException

public SerializationException(String msg,
                              Throwable cause)

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.


Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.