org.pentaho.reporting.libraries.base.util
public class StackableRuntimeException extends java.lang.RuntimeException
| Constructor and Description |
|---|
StackableRuntimeException()
Creates a StackableRuntimeException with no message and no parent.
|
StackableRuntimeException(java.lang.String message)
Creates an exception.
|
StackableRuntimeException(java.lang.String message,
java.lang.Exception ex)
Creates an exception.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Exception |
getParent()
Returns the parent exception (possibly null).
|
void |
printStackTrace(java.io.PrintStream stream)
Prints the stack trace to the specified stream.
|
void |
printStackTrace(java.io.PrintWriter writer)
Prints the stack trace to the specified writer.
|
public StackableRuntimeException()
public StackableRuntimeException(java.lang.String message,
java.lang.Exception ex)
message - the exception message.ex - the parent exception.public StackableRuntimeException(java.lang.String message)
message - the exception message.public java.lang.Exception getParent()
public void printStackTrace(java.io.PrintStream stream)
printStackTrace in class java.lang.Throwablestream - the output stream.public void printStackTrace(java.io.PrintWriter writer)
printStackTrace in class java.lang.Throwablewriter - the writer.