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 -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
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.
-
-
-
-