Interface XMLReporter

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void report​(java.lang.String message, java.lang.String errorType, java.lang.Object relatedInformation, ILocation location)
      Report the desired message in an application specific format.
    • Method Detail

      • report

        void report​(java.lang.String message,
                    java.lang.String errorType,
                    java.lang.Object relatedInformation,
                    ILocation location)
             throws java.lang.Exception
        Report the desired message in an application specific format. Only warnings and non-fatal errors should be reported through this interface. Fatal errors should be thrown as XMLStreamException.
        Parameters:
        message - the error message
        errorType - an implementation defined error type
        relatedInformation - information related to the error, if available
        location - the location of the error, if available
        Throws:
        javax.xml.stream.XMLStreamException
        java.lang.Exception