org.apache.taglibs.xtags.util
Class NestedRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.taglibs.xtags.util.NestedRuntimeException
- All Implemented Interfaces:
- java.io.Serializable
public class NestedRuntimeException
- extends java.lang.RuntimeException
A RuntimeException
which is nested to preserve stack traces.
This class allows the following code to be written to convert a regular
Exception into a RuntimeException
without losing the stack trace.
try {
...
} catch (Exception e) {
throw new RuntimeException(e);
}
- Author:
- James Strachan
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
NestedRuntimeException
public NestedRuntimeException(java.lang.Exception nestedException)
NestedRuntimeException
public NestedRuntimeException(java.lang.String message,
java.lang.Exception nestedException)
printStackTrace
public void printStackTrace(java.io.PrintStream s)
- Overrides:
printStackTrace
in class java.lang.Throwable
printStackTrace
public void printStackTrace(java.io.PrintWriter w)
- Overrides:
printStackTrace
in class java.lang.Throwable
printStackTrace
public void printStackTrace()
- Overrides:
printStackTrace
in class java.lang.Throwable
fillInStackTrace
public java.lang.Throwable fillInStackTrace()
- Overrides:
fillInStackTrace
in class java.lang.Throwable
getNestedException
public java.lang.Exception getNestedException()
Copyright ? 2000-2004 The Apache Software Foundation. All Rights Reserved.