Method Warning
Warning(SAXParseException)
Receive notification of a warning.
Declaration
void Warning(SAXParseException exception)
Parameters
Type | Name | Description |
---|---|---|
SAXParseException | exception | The warning information encapsulated in a SAX parse exception. |
Remarks
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.
Exceptions
Type | Condition |
---|---|
SAXException | Any SAX exception, possibly wrapping another exception. |