Encapsulate an XML parse error or warning.
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.
There are no attributes in this class.
getColumnNumber()
The column number of the end of the text where the exception occurred.
getException()
Return the embedded exception, or None if there was none.
getLineNumber()
The line number of the end of the text where the exception occurred.
getMessage()
Return a message for this exception.
getPublicId()
Get the public identifier of the entity where the exception occurred.
getSystemId()
Get the system identifier of the entity where the exception occurred.
There are no known subclasses.