Package org.apache.commons.jelly.util
Class NestedRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.jelly.util.NestedRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
XPathComparator.XPathSortException
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); }
- Version:
- $Revision: 155420 $
- Author:
- James Strachan
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNestedRuntimeException
(String msg, Throwable cause) Constructs a newNestedRuntimeException
with specified detail message and nestedThrowable
.NestedRuntimeException
(Throwable cause) Constructs a newNestedRuntimeException
with specified nestedThrowable
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
NestedRuntimeException
Constructs a newNestedRuntimeException
with specified nestedThrowable
.- Parameters:
cause
- the exception or error that caused this exception to be thrown
-
NestedRuntimeException
Constructs a newNestedRuntimeException
with specified detail message and nestedThrowable
.- Parameters:
msg
- the error messagecause
- the exception or error that caused this exception to be thrown
-
-
Method Details
-
getCause
-
printStackTrace
public void printStackTrace()- Overrides:
printStackTrace
in classThrowable
-
printStackTrace
- Overrides:
printStackTrace
in classThrowable
-
printStackTrace
- Overrides:
printStackTrace
in classThrowable
-