#include <qgarlib/sax/ErrorHandler.H>
Inheritance diagram for qgxml::ErrorHandler:

If a SAX application needs to implement customized error handling, it must implement this interface and then register an instance with the XML reader using the setErrorHandler method. The parser will then report all errors and warnings through this interface.
This class is an adaptation for C++ of the interface of the same name implemented in the Java SAX API (http://www.saxproject.org).
Definition at line 69 of file ErrorHandler.H.
Public Member Functions | |
| virtual void | error (const SAXParseException &exception)=0 |
| Receive notification of a recoverable error. | |
| virtual void | fatalError (const SAXParseException &exception)=0 |
| Receive notification of a non-recoverable error. | |
| virtual void | warning (const SAXParseException &exception)=0 |
| Receive notification of a warning. | |
Destructor | |
| virtual | ~ErrorHandler () |
| Destructor. | |
|
|
Destructor.
Definition at line 83 of file ErrorHandler.H. |
|
|
Receive notification of a recoverable error.
Implemented in qgxml::DefaultHandler. Referenced by qgxml::XercesQgarErrorHandlerAdaptor::error(), and qgxml::QtQgarErrorHandlerAdaptor::error(). |
|
|
Receive notification of a non-recoverable error.
Implemented in qgar::QgarAppDescr, and qgxml::DefaultHandler. Referenced by qgxml::XercesQgarErrorHandlerAdaptor::fatalError(), and qgxml::QtQgarErrorHandlerAdaptor::fatalError(). |
|
|
Receive notification of a warning.
Implemented in qgxml::DefaultHandler. Referenced by qgxml::XercesQgarErrorHandlerAdaptor::warning(), and qgxml::QtQgarErrorHandlerAdaptor::warning(). |