org.jicarilla.framework
Class CascadingException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.jicarilla.framework.CascadingException
All Implemented Interfaces:
CascadingThrowable, java.io.Serializable
Direct Known Subclasses:
HTTPException, SocketServerException, UnsupportedInvocationException

public class CascadingException
extends java.lang.Exception
implements CascadingThrowable

Class from which all exceptions should inherit. Allows recording of nested exceptions in a pre-jdk-1.4 environment.

This class originally came from the Apache Avalon server framework at http://avalon.apache.org/. It has been included here so that a dependency on avalon-framework.jar is not neccessary in Jicarilla's core.

Version:
$Id: CascadingException.java,v 1.4 2003/12/16 21:20:05 lsimons Exp $
Author:
Avalon Development Team
See Also:
Serialized Form

Field Summary
protected  java.lang.Throwable m_throwable
          The Throwable that caused this exception to be thrown.
 
Constructor Summary
CascadingException()
          Construct a new CascadingException instance.
CascadingException(java.lang.String message)
          Construct a new CascadingException instance.
CascadingException(java.lang.String message, java.lang.Throwable throwable)
          Construct a new CascadingException instance.
CascadingException(java.lang.Throwable throwable)
          Construct a new CascadingException instance.
 
Method Summary
 java.lang.Throwable getCause()
          Retrieve root cause of the exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, 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
 

Field Detail

m_throwable

protected final java.lang.Throwable m_throwable
The Throwable that caused this exception to be thrown.

Constructor Detail

CascadingException

public CascadingException()
Construct a new CascadingException instance.


CascadingException

public CascadingException(java.lang.Throwable throwable)
Construct a new CascadingException instance.

Parameters:
throwable - the root cause of the exception.

CascadingException

public CascadingException(java.lang.String message)
Construct a new CascadingException instance.

Parameters:
message - the detail message for this exception.

CascadingException

public CascadingException(java.lang.String message,
                          java.lang.Throwable throwable)
Construct a new CascadingException instance.

Parameters:
message - the detail message for this exception.
throwable - the root cause of the exception.
Method Detail

getCause

public final java.lang.Throwable getCause()
Retrieve root cause of the exception.

Specified by:
getCause in interface CascadingThrowable
Returns:
the root cause for this exception.


Copyright © 2004 Leo Simons. All Rights Reserved.