Trees | Indices | Help |
|
---|
object --+ | exceptions.BaseException --+ | exceptions.Exception --+ | SAXException
Encapsulate an XML error or warning. This class can contain basic error or warning information from either the XML parser or the application: you can subclass it to provide additional functionality, or to add localization. Note that although you will receive a SAXException as the argument to the handlers in the ErrorHandler interface, you are not actually required to throw the exception; instead, you can simply read the information in it.
Inherited from exceptions.Exception
:
__new__
Inherited from exceptions.BaseException
:
__delattr__
,
__getattribute__
,
__getslice__
,
__reduce__
,
__repr__
,
__setattr__
,
__setstate__
Inherited from exceptions.BaseException
:
args
,
message
Creates an exception. The message is required, but the exception is optional.
Create a string representation of the exception.
Avoids weird error messages if someone does exception[ix] by mistake, since Exception has __getitem__ defined.
Trees | Indices | Help |
|
---|