Constructors Summary |
---|
public XMLStreamException()Default constructor
super();
|
public XMLStreamException(String msg)Construct an exception with the assocated message.
super(msg);
|
public XMLStreamException(Throwable th)Construct an exception with the assocated exception
super(th);
nested = th;
|
public XMLStreamException(String msg, Throwable th)Construct an exception with the assocated message and exception
super(msg, th);
nested = th;
|
public XMLStreamException(String msg, Location location, Throwable th)Construct an exception with the assocated message, exception and location.
super("ParseError at [row,col]:["+location.getLineNumber()+","+
location.getColumnNumber()+"]\n"+
"Message: "+msg);
nested = th;
this.location = location;
|
public XMLStreamException(String msg, Location location)Construct an exception with the assocated message, exception and location.
super("ParseError at [row,col]:["+location.getLineNumber()+","+
location.getColumnNumber()+"]\n"+
"Message: "+msg);
this.location = location;
|