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.ErrorHandler
ErrorHandler implementation which overrides the default behavior of ignoring parse errors to throw aSAXException
instead. 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 void
error(org.xml.sax.SAXParseException e)
void
fatalError(org.xml.sax.SAXParseException e)
void
warning(org.xml.sax.SAXParseException e)
-
-
-
Method Detail
-
warning
public void warning(org.xml.sax.SAXParseException e) throws org.xml.sax.SAXException
- Specified by:
warning
in 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:
error
in 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:
fatalError
in interfaceorg.xml.sax.ErrorHandler
- Throws:
org.xml.sax.SAXException
-
-