Methods Summary |
---|
public java.lang.Throwable | getCause()
return t;
|
public java.lang.String | getMessage()Returns the composite throwable message.
return NestedThrowable.Util.getMessage(super.getMessage(), t);
|
public java.lang.Throwable | getNested()
return t;
|
public void | printStackTrace(java.io.PrintStream stream)Prints the composite message and the embedded stack trace to the
specified print stream.
if (t == null || NestedThrowable.PARENT_TRACE_ENABLED)
super.printStackTrace(stream);
NestedThrowable.Util.print(t, stream);
|
public void | printStackTrace(java.io.PrintWriter writer)Prints the composite message and the embedded stack trace to the
specified print writer.
if (t == null || NestedThrowable.PARENT_TRACE_ENABLED)
super.printStackTrace(writer);
NestedThrowable.Util.print(t, writer);
|
public void | printStackTrace()Prints the composite message and the embedded stack trace to
System.err.
printStackTrace(System.err);
|