Package org.apache.xmlbeans.xml.stream
Class XMLStreamException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.io.IOException
 - 
- org.apache.xmlbeans.xml.stream.XMLStreamException
 
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,NestedThrowable
- Direct Known Subclasses:
 XMLStreamValidationException
public class XMLStreamException extends java.io.IOException implements NestedThrowable
The base exception for unexpected input during XML handling- Since:
 - Weblogic XML Input Stream 1.0
 - See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from interface org.apache.xmlbeans.xml.stream.utils.NestedThrowable
NestedThrowable.Util 
 - 
 
- 
Constructor Summary
Constructors Constructor Description XMLStreamException()XMLStreamException(java.lang.String msg)XMLStreamException(java.lang.String msg, java.lang.Throwable th)XMLStreamException(java.lang.Throwable th) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMessage()java.lang.ThrowablegetNested()Gets the nested Throwable.java.lang.ThrowablegetNestedException()Gets the nested exception.voidprintStackTrace()Prints the stack trace associated with this exception and its nested exception to System.err.voidprintStackTrace(java.io.PrintStream s)Prints the stack trace associated with this exception and its nested exception.voidprintStackTrace(java.io.PrintWriter w)Prints the stack trace associated with this exception and its nested exception.voidsuperPrintStackTrace(java.io.PrintStream ps)Call super.printStackTrace().voidsuperPrintStackTrace(java.io.PrintWriter pw)Call super.printStackTrace().java.lang.StringsuperToString()Call super.toString().java.lang.StringtoString()Prints the exception message and its nested exception message. 
 - 
 
- 
- 
Method Detail
- 
getNestedException
public java.lang.Throwable getNestedException()
Gets the nested exception.- Returns:
 - Nested exception
 
 
- 
getMessage
public java.lang.String getMessage()
- Overrides:
 getMessagein classjava.lang.Throwable
 
- 
getNested
public java.lang.Throwable getNested()
Gets the nested Throwable.- Specified by:
 getNestedin interfaceNestedThrowable- Returns:
 - Nested exception
 
 
- 
superToString
public java.lang.String superToString()
Description copied from interface:NestedThrowableCall super.toString(). [Kludge but necessary.]- Specified by:
 superToStringin interfaceNestedThrowable
 
- 
superPrintStackTrace
public void superPrintStackTrace(java.io.PrintStream ps)
Description copied from interface:NestedThrowableCall super.printStackTrace(). [Kludge but necessary.]- Specified by:
 superPrintStackTracein interfaceNestedThrowable
 
- 
superPrintStackTrace
public void superPrintStackTrace(java.io.PrintWriter pw)
Description copied from interface:NestedThrowableCall super.printStackTrace(). [Kludge but necessary.]- Specified by:
 superPrintStackTracein interfaceNestedThrowable
 
- 
toString
public java.lang.String toString()
Prints the exception message and its nested exception message.- Overrides:
 toStringin classjava.lang.Throwable- Returns:
 - String representation of the exception
 
 
- 
printStackTrace
public void printStackTrace(java.io.PrintStream s)
Prints the stack trace associated with this exception and its nested exception.- Overrides:
 printStackTracein classjava.lang.Throwable- Parameters:
 s- PrintStream
 
- 
printStackTrace
public void printStackTrace(java.io.PrintWriter w)
Prints the stack trace associated with this exception and its nested exception.- Overrides:
 printStackTracein classjava.lang.Throwable- Parameters:
 s- PrintStream
 
- 
printStackTrace
public void printStackTrace()
Prints the stack trace associated with this exception and its nested exception to System.err.- Overrides:
 printStackTracein classjava.lang.Throwable- Parameters:
 s- PrintStream
 
 - 
 
 -