Class InvalidPreferenceValueException

All Implemented Interfaces:
Serializable

@ClassVersion(sourceVersion="$Id: InvalidPreferenceValueException.java 914 2021-05-07 21:22:12Z tquadrat $") public class InvalidPreferenceValueException extends IllegalArgumentException
The is exception will be thrown by implementations of PreferenceAccessor in cases when the value from the preferences node (that is stored there as a String) cannot be converted into the target format, for whatever reason.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: InvalidPreferenceValueException.java 914 2021-05-07 21:22:12Z tquadrat $
Since:
0.0.1
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.spi.InvalidPreferenceValueException"

UML Diagram for "org.tquadrat.foundation.config.spi.InvalidPreferenceValueException"

UML Diagram for "org.tquadrat.foundation.config.spi.InvalidPreferenceValueException"
  • Field Details

  • Constructor Details

    • InvalidPreferenceValueException

      public InvalidPreferenceValueException(Preferences preferences, String propertyName)
      Creates a new InvalidPreferenceValueException.
      Parameters:
      preferences - The preferences node.
      propertyName - The name of the property.
    • InvalidPreferenceValueException

      public InvalidPreferenceValueException(Preferences preferences, String propertyName, String value)
      Creates a new InvalidPreferenceValueException.
      Parameters:
      preferences - The preferences node.
      propertyName - The name of the property.
      value - The invalid value.
    • InvalidPreferenceValueException

      public InvalidPreferenceValueException(Preferences preferences, String propertyName, Throwable cause)
      Creates a new InvalidPreferenceValueException.
      Parameters:
      preferences - The preferences node.
      propertyName - The name of the property.
      cause - The exception that caused the failure.
    • InvalidPreferenceValueException

      public InvalidPreferenceValueException(Preferences preferences, String propertyName, String value, Throwable cause)
      Creates a new InvalidPreferenceValueException.
      Parameters:
      preferences - The preferences node.
      propertyName - The name of the property.
      value - The invalid value.
      cause - The exception that caused the failure.