| Method from org.jboss.resource.connectionmanager.JBossLocalXAException Detail: |
public Throwable getCause() {
return t;
}
|
public String getMessage() {
return NestedThrowable.Util.getMessage(super.getMessage(), t);
}
Returns the composite throwable message. |
public Throwable getNested() {
return t;
}
|
public void printStackTrace() {
printStackTrace(System.err);
}
Prints the composite message and the embedded stack trace to
System.err. |
public void printStackTrace(PrintStream stream) {
if (t == null || NestedThrowable.PARENT_TRACE_ENABLED)
super.printStackTrace(stream);
NestedThrowable.Util.print(t, stream);
}
Prints the composite message and the embedded stack trace to the
specified print stream. |
public void printStackTrace(PrintWriter writer) {
if (t == null || NestedThrowable.PARENT_TRACE_ENABLED)
super.printStackTrace(writer);
NestedThrowable.Util.print(t, writer);
}
Prints the composite message and the embedded stack trace to the
specified print writer. |