Package net.ionite.docval.config
Class ConfigurationError
java.lang.Object
java.lang.Throwable
java.lang.Exception
net.ionite.docval.config.ConfigurationError
- All Implemented Interfaces:
Serializable
Thrown when there is an error reading the configuration file
- Author:
- Ionite
- See Also:
-
Constructor Summary
ConstructorDescriptionConfigurationError
(String errorMessage) Construct a ConfigurationError with the given error messageConfigurationError
(String errorMessage, Throwable exc) Construct a ConfigurationError with the given error message and underlying exception -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConfigurationError
Construct a ConfigurationError with the given error message- Parameters:
errorMessage
- String containing the error message
-
ConfigurationError
Construct a ConfigurationError with the given error message and underlying exception- Parameters:
errorMessage
- String containing the error messageexc
- Throwable containing an underlying exception
-