public class XmlException
extends java.lang.Exception
This is an exception class that you can use to encapsulate all
of the information from Ælfred's error
callback.
This is not necessary for routine use of Ælfred, but it
is used by the optional HandlerBase
class.
Note that the core Ælfred classes do not use this exception.
Constructor and Description |
---|
XmlException(java.lang.String message,
java.lang.String systemId,
int line,
int column)
Construct a new XML parsing exception.
|
Modifier and Type | Method and Description |
---|---|
int |
getColumn()
Get the column number containing the error.
|
int |
getLine()
Get the line number containing the error.
|
java.lang.String |
getMessage()
Get the error message from the parser.
|
java.lang.String |
getSystemId()
Get the URI of the entity containing the error.
|
public XmlException(java.lang.String message, java.lang.String systemId, int line, int column)
message
- The error message from the parser.systemId
- The URI of the entity containing the error.line
- The line number where the error appeared.column
- The column number where the error appeared.public java.lang.String getMessage()
getMessage
in class java.lang.Throwable
public java.lang.String getSystemId()
public int getLine()
public int getColumn()