| java.lang.Object java.lang.Throwable java.lang.Exception javolution.xml.stream.XMLStreamException
XMLStreamException | public class XMLStreamException extends Exception (Code) | | This class represents the base exception for unexpected processing errors.
author: Jean-Marie Dautelle version: 3.8, May 22, 2006 |
XMLStreamException | public XMLStreamException()(Code) | | Default constructor
|
XMLStreamException | public XMLStreamException(String msg)(Code) | | Constructs an exception with the assocated message.
Parameters: msg - the message to report. |
XMLStreamException | public XMLStreamException(Throwable nested)(Code) | | Constructs an exception with the assocated nested exception.
Parameters: nested - the nested exception. |
XMLStreamException | public XMLStreamException(String msg, Throwable nested)(Code) | | Constructs an exception with the assocated message and exception.
Parameters: msg - the message to report. Parameters: nested - the nested exception. |
XMLStreamException | public XMLStreamException(String msg, Location location, Throwable nested)(Code) | | Constructs an exception with the assocated message, exception and
location.
Parameters: msg - the message to report. Parameters: location - the location. Parameters: nested - the nested exception. |
XMLStreamException | public XMLStreamException(String msg, Location location)(Code) | | Constructs 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) | | Returns the location of the exception.
the location of the exception or null if none is available |
getNestedException | public Throwable getNestedException()(Code) | | Returns the nested exception.
the nested exception |
toString | public String toString()(Code) | | Returns the textual representation of this exception.
the string representation of the exception. |
|
|