Class ErrorHandlerToReport

java.lang.Object
org.projecthusky.validation.service.schema.ErrorHandlerToReport
All Implemented Interfaces:
ErrorHandler

public class ErrorHandlerToReport extends Object implements ErrorHandler
An implementation of ErrorHandler that puts the exceptions into a XmlSchemaReport.
Author:
Quentin Ligier
  • Constructor Details

    • ErrorHandlerToReport

      public ErrorHandlerToReport(XmlSchemaReport report)
      Constructor.
      Parameters:
      report - The report in which to put the handled exceptions.
  • Method Details

    • warning

      public void warning(SAXParseException exception)
      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 interface ErrorHandler
      Parameters:
      exception - The warning information encapsulated in a SAX parse exception.
      See Also:
    • error

      public void error(SAXParseException exception)
      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 interface ErrorHandler
      Parameters:
      exception - The error information encapsulated in a SAX parse exception.
      See Also:
    • fatalError

      public void fatalError(SAXParseException exception) throws SAXException
      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 interface ErrorHandler
      Parameters:
      exception - The error information encapsulated in a SAXParseException.
      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 calling ContentHandler.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.