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"

UML Diagram for "org.tquadrat.foundation.config.spi.prefs.PreferencesException"

UML Diagram for "org.tquadrat.foundation.config.spi.prefs.PreferencesException"
  • Constructor Details

    • PreferencesException

      Creates a new PreferencesException instance.
    • PreferencesException

      public PreferencesException(String message)
      Creates a new PreferencesException instance with the specified detail message. The cause is not initialised, and may subsequently be initialised by a call to Throwable.initCause(Throwable).
      Parameters:
      message - The detail message; it is saved for later retrieval by the Throwable.getMessage() method.
    • PreferencesException

      Creates a new PreferencesException instance with the specified cause and a detail message of
      (cause == null ? null : cause.toString() )
      (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other instances of Throwable.
      Parameters:
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is non-existent or unknown.
    • PreferencesException

      public PreferencesException(String message, Throwable cause)
      Creates a new PreferencesException 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.
      Parameters:
      message - The detail message; it is saved for later retrieval by the Throwable.getMessage() method.
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is non-existent or unknown.