Class ConfigurationPersistenceException
-
- All Implemented Interfaces:
-
java.io.Serializable
public class ConfigurationPersistenceException extends ExceptionAn Exception thrown by a ConfigurationPersiter when there is an error persisting the given configuration data.
-
-
Constructor Summary
Constructors Constructor Description ConfigurationPersistenceException(String message)Creates a ConfigurationPersistenceException containing the specified message. ConfigurationPersistenceException(String message, Exception exception)Creates a ConfigurationPersistenceException containing the specified message and exception.
-
Method Summary
Modifier and Type Method Description -
-
Constructor Detail
-
ConfigurationPersistenceException
ConfigurationPersistenceException(String message)
Creates a ConfigurationPersistenceException containing the specified message.
- Parameters:
message- The message to be contained within the Exception.
-
ConfigurationPersistenceException
ConfigurationPersistenceException(String message, Exception exception)
Creates a ConfigurationPersistenceException containing the specified message and exception.
- Parameters:
message- The message to be contained within the Exception.exception- The Exception that caused this one to be thrown.
-
-
-
-