|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
org.jicarilla.framework.CascadingException
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.
| 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 |
protected final java.lang.Throwable m_throwable
| Constructor Detail |
public CascadingException()
CascadingException instance.
public CascadingException(java.lang.Throwable throwable)
CascadingException instance.
throwable - the root cause of the exception.public CascadingException(java.lang.String message)
CascadingException instance.
message - the detail message for this exception.
public CascadingException(java.lang.String message,
java.lang.Throwable throwable)
CascadingException instance.
message - the detail message for this exception.throwable - the root cause of the exception.| Method Detail |
public final java.lang.Throwable getCause()
getCause in interface CascadingThrowable
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||