Class ConfigurationErrorHandler
- java.lang.Object
-
- org.apache.jackrabbit.core.config.ConfigurationErrorHandler
-
- All Implemented Interfaces:
ErrorHandler
public class ConfigurationErrorHandler extends Object implements ErrorHandler
Error handler for errors in the repository or workspace configuration.
-
-
Constructor Summary
Constructors Constructor Description ConfigurationErrorHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
error(SAXParseException exception)
This method is called when there is an error parsing the configuration file.void
fatalError(SAXParseException exception)
This method is called when there is a fatal error parsing the configuration file.void
warning(SAXParseException exception)
This method is called when there is a warning parsing the configuration file.
-
-
-
Method Detail
-
error
public void error(SAXParseException exception) throws SAXException
This method is called when there is an error parsing the configuration file. The relevant information is written to the log file.- Specified by:
error
in interfaceErrorHandler
- Throws:
SAXException
-
fatalError
public void fatalError(SAXParseException exception) throws SAXException
This method is called when there is a fatal error parsing the configuration file. The relevant information is written to the log file.- Specified by:
fatalError
in interfaceErrorHandler
- Throws:
SAXException
-
warning
public void warning(SAXParseException exception) throws SAXException
This method is called when there is a warning parsing the configuration file. The relevant information is written to the log file.- Specified by:
warning
in interfaceErrorHandler
- Throws:
SAXException
-
-