Package jadex.xml.stax
Interface XMLReporter
-
- All Known Implementing Classes:
StaxXMLReporterWrapper
public interface XMLReporter
Stax API: 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 messageerrorType
- an implementation defined error typerelatedInformation
- information related to the error, if availablelocation
- the location of the error, if available- Throws:
javax.xml.stream.XMLStreamException
java.lang.Exception
-
-