XML FOR DOMINO
This exception will include information for locating the error in the original XML document. Note that although the application will receive a SAXParseException as the argument to the handlers in the ErrorHandler interface, the application is not actually required to throw the exception. Instead, it can simply read the information in it and take a different action.
Since this exception is a subclass of SAXException, it inherits the ability to wrap another exception.
Methods
getColumnNumber
getLineNumber
getPublicID
getSystemID
The column number of the end of the text where the exception occurred. The first column in a line is position 1.
Syntax:
public int getColumnNumber()
Return value:
The line number at the end of the text where the exception occurred.
public int getLineNumber()
Gets the public identifier of the entity where the exception occurred.
public java.lang.String getPublicId()
Gets the system identifier of the entity where the exception occurred. If the system identifier is a URL, it will be resolved fully.
public java.lang.String getSystemId()