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:
Serializable
- Enclosing class:
- AbstractProperty<T>
public static class AbstractProperty.InvalidPreferenceValueException extends RuntimeException
An exception that is thrown if a preference value is invalid.- Since:
- 10824
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidPreferenceValueException(String message)
Constructs a newInvalidPreferenceValueException
with the specified detail message.InvalidPreferenceValueException(String message, Throwable cause)
Constructs a newInvalidPreferenceValueException
with the specified detail message and cause.InvalidPreferenceValueException(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
).
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidPreferenceValueException
public InvalidPreferenceValueException(String message, 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(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(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).
-
-