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 voiderror(SAXParseException exception)This method is called when there is an error parsing the configuration file.voidfatalError(SAXParseException exception)This method is called when there is a fatal error parsing the configuration file.voidwarning(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:
errorin 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:
fatalErrorin 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:
warningin interfaceErrorHandler- Throws:
SAXException
-
-