Interface NestedThrowable
-
- All Known Implementing Classes:
XMLStreamException,XMLStreamValidationException
public interface NestedThrowable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classNestedThrowable.Util
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThrowablegetNested()Get the nested Throwable.voidsuperPrintStackTrace(PrintStream ps)Call super.printStackTrace().voidsuperPrintStackTrace(PrintWriter po)Call super.printStackTrace().StringsuperToString()Call super.toString().
-
-
-
Method Detail
-
getNested
Throwable getNested()
Get the nested Throwable.
-
superToString
String superToString()
Call super.toString(). [Kludge but necessary.]
-
superPrintStackTrace
void superPrintStackTrace(PrintStream ps)
Call super.printStackTrace(). [Kludge but necessary.]
-
superPrintStackTrace
void superPrintStackTrace(PrintWriter po)
Call super.printStackTrace(). [Kludge but necessary.]
-
-