Class PreferencesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.tquadrat.foundation.config.spi.prefs.PreferencesException
- All Implemented Interfaces:
Serializable
@ClassVersion(sourceVersion="$Id: PreferencesException.java 941 2021-12-18 22:34:37Z tquadrat $")
@API(status=STABLE,
since="0.1.0")
public final class PreferencesException
extends RuntimeException
The exception that is thrown from a configuration bean in case an
operation on the connected
Preferences
instance fails.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: PreferencesException.java 941 2021-12-18 22:34:37Z tquadrat $
- Since:
- 0.1.0
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.spi.prefs.PreferencesException"
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newPreferencesException
instance.PreferencesException
(String message) Creates a newPreferencesException
instance with the specified detail message.PreferencesException
(String message, Throwable cause) Creates a newPreferencesException
instance with the specified detail message and cause.PreferencesException
(Throwable cause) Creates a newPreferencesException
instance with the specified cause and a detail message of -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PreferencesException
public PreferencesException()Creates a newPreferencesException
instance. -
PreferencesException
Creates a newPreferencesException
instance with the specified detail message. The cause is not initialised, and may subsequently be initialised by a call toThrowable.initCause(Throwable)
.- Parameters:
message
- The detail message; it is saved for later retrieval by theThrowable.getMessage()
method.
-
PreferencesException
Creates a newPreferencesException
instance with the specified cause and a detail message of
(which typically contains the class and detail message of(cause == null ? null : cause.toString() )
cause
). This constructor is useful for exceptions that are little more than wrappers for other instances ofThrowable
.- Parameters:
cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is non-existent or unknown.
-
PreferencesException
Creates a newPreferencesException
instance with the specified detail message and cause.- Note:
-
- The detail message associated with
cause
is not automatically incorporated in this exception's detail message.
- The detail message associated with
- Parameters:
message
- The detail message; it is saved for later retrieval by theThrowable.getMessage()
method.cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). Anull
value is permitted, and indicates that the cause is non-existent or unknown.
-