org.apache.commons.lang

Class SerializationException

Implemented Interfaces:
Nestable

public class SerializationException
extends NestableRuntimeException

Exception thrown when the Serialization process fails.

The original error is wrapped within this one.

Version:
$Id: SerializationException.java 161243 2005-04-14 04:30:28Z ggregory $
Author:
Stephen Colebourne
Since:
1.0

Field Summary

Fields inherited from class org.apache.commons.lang.exception.NestableRuntimeException

delegate

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 org.apache.commons.lang.exception.NestableRuntimeException

getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace

Constructor Details

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(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.

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.

Copyright © 2001-2005 - Apache Software Foundation