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 java.lang.ThrowablegetNested()Get the nested Throwable.voidsuperPrintStackTrace(java.io.PrintStream ps)Call super.printStackTrace().voidsuperPrintStackTrace(java.io.PrintWriter po)Call super.printStackTrace().java.lang.StringsuperToString()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.] 
 - 
 
 -