Class ConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.saperion.common.config.exception.ConfigurationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigurationException extends java.lang.Exception
TheConfigurationException
is used to indicate an error that occurs when a configuration is loaded or processed.- Author:
- sts
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigurationException(java.lang.String message)
Creates a newConfigurationException
with the specified detail message.ConfigurationException(java.lang.String message, java.lang.Throwable cause)
Creates a newConfigurationException
with the specified detail message and cause.
-
-
-
Constructor Detail
-
ConfigurationException
public ConfigurationException(java.lang.String message)
Creates a newConfigurationException
with the specified detail message.- Parameters:
message
- detail message
-
ConfigurationException
public ConfigurationException(java.lang.String message, java.lang.Throwable cause)
Creates a newConfigurationException
with the specified detail message and cause.- Parameters:
message
- detail messagecause
- cause-Throwable
of the new exception
-
-