Package org.jdom2.input.sax
Class BuilderErrorHandler
- java.lang.Object
-
- org.jdom2.input.sax.BuilderErrorHandler
-
- All Implemented Interfaces:
org.xml.sax.ErrorHandler
public class BuilderErrorHandler extends java.lang.Object implements org.xml.sax.ErrorHandler
The standard JDOM error handler implementation.- Author:
- Jason Hunter
-
-
Constructor Summary
Constructors Constructor Description BuilderErrorHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
error(org.xml.sax.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(org.xml.sax.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(org.xml.sax.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
-
warning
public void warning(org.xml.sax.SAXParseException exception) throws org.xml.sax.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".- Specified by:
warning
in interfaceorg.xml.sax.ErrorHandler
- Parameters:
exception
-SAXParseException
that occurred.- Throws:
org.xml.sax.SAXException
- when things go wrong
-
error
public void error(org.xml.sax.SAXParseException exception) throws org.xml.sax.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.- Specified by:
error
in interfaceorg.xml.sax.ErrorHandler
- Parameters:
exception
-SAXParseException
that occurred.- Throws:
org.xml.sax.SAXException
- when things go wrong
-
fatalError
public void fatalError(org.xml.sax.SAXParseException exception) throws org.xml.sax.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.- Specified by:
fatalError
in interfaceorg.xml.sax.ErrorHandler
- Parameters:
exception
-SAXParseException
that occurred.- Throws:
org.xml.sax.SAXException
- when things go wrong
-
-