Interface NestedThrowable
-
- All Known Implementing Classes:
XMLStreamException
,XMLStreamValidationException
public interface NestedThrowable
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
NestedThrowable.Util
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Throwable
getNested()
Get the nested Throwable.void
superPrintStackTrace(PrintStream ps)
Call super.printStackTrace().void
superPrintStackTrace(PrintWriter po)
Call super.printStackTrace().String
superToString()
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.]
-
-