|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CascadingThrowable
An interface to be implemented by Throwable
extensions
which would like to be able to cascade root exceptions inside themselves.
Method Summary | |
---|---|
java.lang.Throwable |
getCause()
Returns the reference to the exception or error that caused the exception. |
void |
printPartialStackTrace(java.io.PrintWriter out)
Prints the stack trace for this exception only--root cause not included--using the provided writer. |
Method Detail |
---|
java.lang.Throwable getCause()
void printPartialStackTrace(java.io.PrintWriter out)
ExceptionUtil
to write
individual stack traces to a buffer. The implementation of this method
should call super.printStackTrace(out);
in most cases.
out
- The writer to use.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |