| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Method Summary | |
void | error(SAXParseException exception) This method is called in response to an error that has occurred; this indicates that a rule was broken, typically in validation, but that parsing could reasonably continue. |
void | fatalError(SAXParseException exception) This method is called in response to a fatal error; this indicates that a rule has been broken that makes continued parsing either impossible or an almost certain waste of time. |
void | warning(SAXParseException exception) This method is called when a warning has occurred; this indicates that while no XML rules were broken, something appears to be incorrect or missing. |
Method Detail |
public void error(SAXParseException exception)
throws SAXException
This method is called in response to an error that has occurred; this indicates that a rule was broken, typically in validation, but that parsing could reasonably continue. The implementation of this method here is to rethrow the exception.
SAXParseException
that occurred.SAXException
- when things go wrongpublic void fatalError(SAXParseException exception)
throws SAXException
This method is called in response to a fatal error; this indicates that a rule has been broken that makes continued parsing either impossible or an almost certain waste of time. The implementation of this method here is to rethrow the exception.
SAXParseException
that occurred.SAXException
- when things go wrongpublic void warning(SAXParseException exception)
throws SAXException
This method is called when a warning has occurred; this indicates that while no XML rules were broken, something appears to be incorrect or missing. The implementation of this method here is a "no op".
SAXParseException
that occurred.SAXException
- when things go wrong
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |