| Constructor: |
public XMLStreamException() {
super();
}
|
public XMLStreamException(String msg) {
super(msg);
}
Construct an exception with the assocated message. Parameters:
msg - the message to report
|
public XMLStreamException(Throwable th) {
super(th);
nested = th;
}
Construct an exception with the assocated exception Parameters:
th - a nested exception
|
public XMLStreamException(String msg,
Throwable th) {
super(msg, th);
nested = th;
}
Construct an exception with the assocated message and exception Parameters:
th - a nested exception
msg - the message to report
|
public XMLStreamException(String msg,
Location location) {
super("ParseError at [row,col]:["+location.getLineNumber()+","+
location.getColumnNumber()+"]\n"+
"Message: "+msg);
this.location = location;
}
Construct an exception with the assocated message, exception and location. Parameters:
msg - the message to report
location - the location of the error
|
public XMLStreamException(String msg,
Location location,
Throwable th) {
super("ParseError at [row,col]:["+location.getLineNumber()+","+
location.getColumnNumber()+"]\n"+
"Message: "+msg);
nested = th;
this.location = location;
}
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
|