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 java.lang.Throwable
getNested()
Get the nested Throwable.void
superPrintStackTrace(java.io.PrintStream ps)
Call super.printStackTrace().void
superPrintStackTrace(java.io.PrintWriter po)
Call super.printStackTrace().java.lang.String
superToString()
Call super.toString().
-
-
-
Method Detail
-
getNested
java.lang.Throwable getNested()
Get the nested Throwable.
-
superToString
java.lang.String superToString()
Call super.toString(). [Kludge but necessary.]
-
superPrintStackTrace
void superPrintStackTrace(java.io.PrintStream ps)
Call super.printStackTrace(). [Kludge but necessary.]
-
superPrintStackTrace
void superPrintStackTrace(java.io.PrintWriter po)
Call super.printStackTrace(). [Kludge but necessary.]
-
-