| java.lang.Object java.lang.Throwable java.lang.Exception javax.xml.stream.XMLStreamException
XMLStreamException | public class XMLStreamException extends Exception (Code) | | The base exception for unexpected processing errors. This Exception
class is used to report well-formedness errors as well as unexpected
processing conditions.
version: 1.0 author: Copyright (c) 2003 by BEA Systems. All Rights Reserved. |
XMLStreamException | public XMLStreamException()(Code) | | Default constructor
|
XMLStreamException | public XMLStreamException(String msg)(Code) | | Construct an exception with the assocated message.
Parameters: msg - the message to report |
XMLStreamException | public XMLStreamException(Throwable th)(Code) | | Construct an exception with the assocated exception
Parameters: th - a nested exception |
XMLStreamException | public XMLStreamException(String msg, Throwable th)(Code) | | Construct an exception with the assocated message and exception
Parameters: th - a nested exception Parameters: msg - the message to report |
XMLStreamException | public XMLStreamException(String msg, Location location, Throwable th)(Code) | | Construct an exception with the assocated message, exception and location.
Parameters: th - a nested exception Parameters: msg - the message to report Parameters: location - the location of the error |
XMLStreamException | public XMLStreamException(String msg, Location location)(Code) | | Construct an exception with the assocated message, exception and location.
Parameters: msg - the message to report Parameters: location - the location of the error |
getLocation | public Location getLocation()(Code) | | Gets the location of the exception
the location of the exception, may be null if none is available |
getNestedException | public Throwable getNestedException()(Code) | | Gets the nested exception.
Nested exception |
|
|