Methods Summary |
---|
public java.lang.Throwable | getException()Retrieves nested exception.
return cause;
|
public void | printStackTrace()
printStackTrace(System.err);
|
public void | printStackTrace(java.io.PrintStream ps)
synchronized (ps) {
super.printStackTrace(ps);
if (cause != null) {
ps.println("--- Nested Exception ---");
cause.printStackTrace(ps);
}
}
|
public void | printStackTrace(java.io.PrintWriter pw)
synchronized (pw) {
super.printStackTrace(pw);
if (cause != null) {
pw.println("--- Nested Exception ---");
cause.printStackTrace(pw);
}
}
|