Class AbstractProperty.InvalidPreferenceValueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.openstreetmap.josm.data.preferences.AbstractProperty.InvalidPreferenceValueException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- AbstractProperty<T>
public static class AbstractProperty.InvalidPreferenceValueException extends java.lang.RuntimeException
An exception that is thrown if a preference value is invalid.- Since:
- 10824
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidPreferenceValueException(java.lang.String message)
Constructs a newInvalidPreferenceValueException
with the specified detail message.InvalidPreferenceValueException(java.lang.String message, java.lang.Throwable cause)
Constructs a newInvalidPreferenceValueException
with the specified detail message and cause.InvalidPreferenceValueException(java.lang.Throwable cause)
Constructs a newInvalidPreferenceValueException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).
-
-
-
Constructor Detail
-
InvalidPreferenceValueException
public InvalidPreferenceValueException(java.lang.String message, java.lang.Throwable cause)
Constructs a newInvalidPreferenceValueException
with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
InvalidPreferenceValueException
public InvalidPreferenceValueException(java.lang.String message)
Constructs a newInvalidPreferenceValueException
with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
InvalidPreferenceValueException
public InvalidPreferenceValueException(java.lang.Throwable cause)
Constructs a newInvalidPreferenceValueException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method).
-
-