| |
|
| java.lang.Object org.jaffa.util.DefaultErrorHandler
DefaultErrorHandler | public class DefaultErrorHandler implements ErrorHandler(Code) | | This is an implementation of the ErrorHandler interface.
It enforces a very strict validation policy.
SAXException will be thrown if any warning, error, fatalError is raised during XML parsing.
author: GautamJ |
error | public void error(SAXParseException exception) throws SAXException(Code) | | Throws a SAXException if any error is raised by the XML parser.
Parameters: exception - The error information encapsulated in a SAX parse exception. throws: SAXException - The input exception. |
fatalError | public void fatalError(SAXParseException exception) throws SAXException(Code) | | Throws a SAXException if any fatalError is raised by the XML parser.
Parameters: exception - The fatalError information encapsulated in a SAX parse exception. throws: SAXException - The input exception. |
warning | public void warning(SAXParseException exception) throws SAXException(Code) | | Throws a SAXException if any warning is raised by the XML parser.
Parameters: exception - The warning information encapsulated in a SAX parse exception. throws: SAXException - The input exception. |
|
|
|