Class ErrorHandlerToReport
- All Implemented Interfaces:
ErrorHandler
ErrorHandler
that puts the exceptions into a XmlSchemaReport
.- Author:
- Quentin Ligier
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
error
(SAXParseException exception) Receive notification of a recoverable error.void
fatalError
(SAXParseException exception) Receive notification of a non-recoverable, fatal error.void
warning
(SAXParseException exception) Receive notification of a warning.
-
Constructor Details
-
ErrorHandlerToReport
Constructor.- Parameters:
report
- The report in which to put the handled exceptions.
-
-
Method Details
-
warning
Receive notification of a warning.SAX parsers will use this method to report conditions that are not errors or fatal errors as defined by the XML recommendation. The default behaviour is to take no action.
The SAX parser must continue to provide normal parsing events after invoking this method: it should still be possible for the application to process the document through to the end.
Filters may use this method to report other, non-XML warnings as well.
- Specified by:
warning
in interfaceErrorHandler
- Parameters:
exception
- The warning information encapsulated in a SAX parse exception.- See Also:
-
error
Receive notification of a recoverable error.This corresponds to the definition of "error" in section 1.2 of the W3C XML 1.0 Recommendation. For example, a validating parser would use this callback to report the violation of a validity constraint. The default behaviour is to take no action.
The SAX parser must continue to provide normal parsing events after invoking this method: it should still be possible for the application to process the document through to the end. If the application cannot do so, then the parser should report a fatal error even if the XML recommendation does not require it to do so.
Filters may use this method to report other, non-XML errors as well.
- Specified by:
error
in interfaceErrorHandler
- Parameters:
exception
- The error information encapsulated in a SAX parse exception.- See Also:
-
fatalError
Receive notification of a non-recoverable, fatal error.As defined in section 1.2 of the W3C XML 1.0 Recommendation, fatal errors are those that would make it impossible for a parser to continue normal processing. These include violation of a well-formedness constraint, invalid encoding, and forbidden structural errors as described in the W3C XML 1.0 Recommendation.
- Specified by:
fatalError
in interfaceErrorHandler
- Parameters:
exception
- The error information encapsulated in aSAXParseException
.- Throws:
SAXException
- API Note:
- An application must assume that the parser can no longer perform
normal processing after reporting a fatal error and may stop by throwing
a
SAXException
without callingContentHandler.endDocument()
. In addition, the parser cannot be expected to be able to return accurate information about the logical structure on the rest of the document even if it may be able to resume parsing.
-