Class ConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.saperion.common.config.exception.ConfigurationException
- All Implemented Interfaces:
Serializable
The
ConfigurationException is used to indicate an error that occurs when a configuration is loaded or
processed.- Author:
- sts
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConfigurationException(String message) Creates a newConfigurationExceptionwith the specified detail message.ConfigurationException(String message, Throwable cause) Creates a newConfigurationExceptionwith the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConfigurationException
Creates a newConfigurationExceptionwith the specified detail message.- Parameters:
message- detail message
-
ConfigurationException
Creates a newConfigurationExceptionwith the specified detail message and cause.- Parameters:
message- detail messagecause- cause-Throwableof the new exception
-