Method from org.apache.xmlbeans.xml.stream.XMLStreamException Detail: |
public String getMessage() {
String msg = super.getMessage();
if (msg == null && th != null) {
return th.getMessage();
} else {
return msg;
}
}
|
public Throwable getNested() {
return th;
}
Gets the nested Throwable. |
public Throwable getNestedException() {
return getNested();
}
Gets the nested exception. |
public void printStackTrace() {
printStackTrace(System.err);
}
Prints the stack trace associated with this exception and
its nested exception to System.err. |
public void printStackTrace(PrintStream s) {
NestedThrowable.Util.printStackTrace(this, s);
}
Prints the stack trace associated with this exception and
its nested exception. |
public void printStackTrace(PrintWriter w) {
NestedThrowable.Util.printStackTrace(this, w);
}
Prints the stack trace associated with this exception and
its nested exception. |
public void superPrintStackTrace(PrintStream ps) {
super.printStackTrace(ps);
}
|
public void superPrintStackTrace(PrintWriter pw) {
super.printStackTrace(pw);
}
|
public String superToString() {
return super.toString();
}
|
public String toString() {
return NestedThrowable.Util.toString(this);
}
Prints the exception message and its nested exception message. |