Package org.apache.openjpa.lib.xml
Class ValidatingErrorHandler
- java.lang.Object
-
- org.apache.openjpa.lib.xml.ValidatingErrorHandler
-
- All Implemented Interfaces:
org.xml.sax.ErrorHandler
public class ValidatingErrorHandler extends java.lang.Object implements org.xml.sax.ErrorHandlerErrorHandler implementation which overrides the default behavior of ignoring parse errors to throw aSAXExceptioninstead. This handler is used by the validating parsers of theXMLFactory.- Author:
- Abe White
-
-
Constructor Summary
Constructors Constructor Description ValidatingErrorHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiderror(org.xml.sax.SAXParseException e)voidfatalError(org.xml.sax.SAXParseException e)voidwarning(org.xml.sax.SAXParseException e)
-
-
-
Method Detail
-
warning
public void warning(org.xml.sax.SAXParseException e) throws org.xml.sax.SAXException- Specified by:
warningin interfaceorg.xml.sax.ErrorHandler- Throws:
org.xml.sax.SAXException
-
error
public void error(org.xml.sax.SAXParseException e) throws org.xml.sax.SAXException- Specified by:
errorin interfaceorg.xml.sax.ErrorHandler- Throws:
org.xml.sax.SAXException
-
fatalError
public void fatalError(org.xml.sax.SAXParseException e) throws org.xml.sax.SAXException- Specified by:
fatalErrorin interfaceorg.xml.sax.ErrorHandler- Throws:
org.xml.sax.SAXException
-
-