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