javax.xml.stream
Class XMLStreamException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjavax.xml.stream.XMLStreamException
All Implemented Interfaces:
java.io.Serializable

public class XMLStreamException
extends java.lang.Exception

The base exception for unexpected processing errors. This Exception class is used to report well-formedness errors as well as unexpected processing conditions.

See Also:
Serialized Form

Field Summary
protected  Location location
           
protected  java.lang.Throwable nested
           
 
Constructor Summary
XMLStreamException()
          Default constructor
XMLStreamException(java.lang.String msg)
          Construct an exception with the assocated message.
XMLStreamException(java.lang.String msg, Location location)
          Construct an exception with the assocated message, exception and location.
XMLStreamException(java.lang.String msg, Location location, java.lang.Throwable th)
          Construct an exception with the assocated message, exception and location.
XMLStreamException(java.lang.String msg, java.lang.Throwable th)
          Construct an exception with the assocated message and exception
XMLStreamException(java.lang.Throwable th)
          Construct an exception with the assocated exception
 
Method Summary
 Location getLocation()
          Gets the location of the exception
 java.lang.Throwable getNestedException()
          Gets the nested exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

nested

protected java.lang.Throwable nested

location

protected Location location
Constructor Detail

XMLStreamException

public XMLStreamException()
Default constructor


XMLStreamException

public XMLStreamException(java.lang.String msg)
Construct an exception with the assocated message.

Parameters:
msg - the message to report

XMLStreamException

public XMLStreamException(java.lang.Throwable th)
Construct an exception with the assocated exception

Parameters:
th - a nested exception

XMLStreamException

public XMLStreamException(java.lang.String msg,
                          java.lang.Throwable th)
Construct an exception with the assocated message and exception

Parameters:
th - a nested exception
msg - the message to report

XMLStreamException

public XMLStreamException(java.lang.String msg,
                          Location location,
                          java.lang.Throwable th)
Construct an exception with the assocated message, exception and location.

Parameters:
th - a nested exception
msg - the message to report
location - the location of the error

XMLStreamException

public XMLStreamException(java.lang.String msg,
                          Location location)
Construct an exception with the assocated message, exception and location.

Parameters:
msg - the message to report
location - the location of the error
Method Detail

getNestedException

public java.lang.Throwable getNestedException()
Gets the nested exception.

Returns:
Nested exception

getLocation

public Location getLocation()
Gets the location of the exception

Returns:
the location of the exception, may be null if none is available