:: com :: sun :: star :: xml :: sax ::

interface XErrorHandler

Methods' Summary
error receives notification of a recoverable error.  
fatalError receives notification of a non-recoverable error.  
warning receives notification of a warning.  
Methods' Details
error
void
error( [in] any  aSAXParseException )
raises( SAXException );

Description
receives notification of a recoverable error.
fatalError
void
fatalError( [in] any  aSAXParseException )
raises( SAXException );

Description
receives notification of a non-recoverable error.
warning
void
warning( [in] any  aSAXParseException )
raises( SAXException );

Description
receives notification of a warning.
Top of Page