java.lang.Object
org.jdom.input.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.
- Version:
- $Revision: 1.12 $, $Date: 2004/02/06 09:28:31 $
|
Method Summary |
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. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CVS_ID
private static final java.lang.String CVS_ID
- See Also:
- Constant Field Values
BuilderErrorHandler
public BuilderErrorHandler()
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 interface org.xml.sax.ErrorHandler
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 interface org.xml.sax.ErrorHandler
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 interface org.xml.sax.ErrorHandler