QXmlErrorHandler

PyQt5.QtXml.QXmlErrorHandler

Inherited by QXmlDefaultHandler.

Description

The QXmlErrorHandler class provides an interface to report errors in XML data.

If you want your application to report errors to the user or to perform customized error handling, you should subclass this class.

You can set the error handler with setErrorHandler().

Errors can be reported using warning(), error() and fatalError(), with the error text being reported with errorString().

Methods

__init__()

TODO


__init__(QXmlErrorHandler)

TODO


error(QXmlParseException) → bool

TODO


errorString() → str

TODO


fatalError(QXmlParseException) → bool

TODO


warning(QXmlParseException) → bool

TODO