Trees | Indices | Help |
|
---|
object --+ | exceptions.BaseException --+ | exceptions.Exception --+ | SAXException --+ | SAXParseException
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.
Inherited from SAXException
:
__getitem__
,
getException
,
getMessage
Inherited from exceptions.Exception
:
__new__
Inherited from exceptions.BaseException
:
__delattr__
,
__getattribute__
,
__getslice__
,
__reduce__
,
__repr__
,
__setattr__
,
__setstate__
Inherited from exceptions.BaseException
:
args
,
message
Creates the exception. The exception parameter is allowed to be None.
Create a string representation of the exception.
Trees | Indices | Help |
|
---|