Javolution 6.0.0 java
|
Public Member Functions | |
XMLStreamException () | |
XMLStreamException (String msg) | |
XMLStreamException (Throwable nested) | |
XMLStreamException (String msg, Throwable nested) | |
XMLStreamException (String msg, Location location, Throwable nested) | |
XMLStreamException (String msg, Location location) | |
Throwable | getNestedException () |
Location | getLocation () |
String | toString () |
Private Attributes | |
Throwable | _nested |
Location | _location |
Static Private Attributes | |
static final long | serialVersionUID = 1L |
This class represents the base exception for unexpected processing errors.
Definition at line 17 of file XMLStreamException.java.
javolution.xml.stream.XMLStreamException.XMLStreamException | ( | ) |
javolution.xml.stream.XMLStreamException.XMLStreamException | ( | String | msg | ) |
Constructs an exception with the assocated message.
msg | the message to report. |
Definition at line 41 of file XMLStreamException.java.
javolution.xml.stream.XMLStreamException.XMLStreamException | ( | Throwable | nested | ) |
Constructs an exception with the assocated nested exception.
nested | the nested exception. |
Definition at line 50 of file XMLStreamException.java.
References javolution.xml.stream.XMLStreamException._nested.
javolution.xml.stream.XMLStreamException.XMLStreamException | ( | String | msg, |
Throwable | nested | ||
) |
Constructs an exception with the assocated message and exception.
msg | the message to report. |
nested | the nested exception. |
Definition at line 60 of file XMLStreamException.java.
References javolution.xml.stream.XMLStreamException._nested.
javolution.xml.stream.XMLStreamException.XMLStreamException | ( | String | msg, |
Location | location, | ||
Throwable | nested | ||
) |
Constructs an exception with the assocated message, exception and location.
msg | the message to report. |
location | the location. |
nested | the nested exception. |
Definition at line 73 of file XMLStreamException.java.
References javolution.xml.stream.XMLStreamException._location, and javolution.xml.stream.XMLStreamException._nested.
javolution.xml.stream.XMLStreamException.XMLStreamException | ( | String | msg, |
Location | location | ||
) |
Constructs an exception with the assocated message, exception and location.
msg | the message to report |
location | the location of the error |
Definition at line 86 of file XMLStreamException.java.
References javolution.xml.stream.XMLStreamException._location.
Location javolution.xml.stream.XMLStreamException.getLocation | ( | ) |
Returns the location of the exception.
null
if none is available Definition at line 106 of file XMLStreamException.java.
References javolution.xml.stream.XMLStreamException._location.
Throwable javolution.xml.stream.XMLStreamException.getNestedException | ( | ) |
Returns the nested exception.
Definition at line 96 of file XMLStreamException.java.
References javolution.xml.stream.XMLStreamException._nested.
Referenced by javolution.xml.sax.XMLReaderImpl.parse().
String javolution.xml.stream.XMLStreamException.toString | ( | ) |
Returns the textual representation of this exception.
Definition at line 115 of file XMLStreamException.java.
References javolution.xml.stream.XMLStreamException._location, javolution.xml.stream.XMLStreamException._nested, javolution.xml.stream.Location.getColumnNumber(), and javolution.xml.stream.Location.getLineNumber().
|
private |
Holds the location.
Definition at line 27 of file XMLStreamException.java.
Referenced by javolution.xml.stream.XMLStreamException.getLocation(), javolution.xml.stream.XMLStreamException.toString(), and javolution.xml.stream.XMLStreamException.XMLStreamException().
|
private |
Holds the nested exception if any.
Definition at line 22 of file XMLStreamException.java.
Referenced by javolution.xml.stream.XMLStreamException.getNestedException(), javolution.xml.stream.XMLStreamException.toString(), and javolution.xml.stream.XMLStreamException.XMLStreamException().
|
staticprivate |
Definition at line 127 of file XMLStreamException.java.