InvalidPreferencesFormatExceptionpublic class InvalidPreferencesFormatException extends Exception Thrown to indicate that an operation could not complete because
the input did not conform to the appropriate XML document type
for a collection of preferences, as per the {@link Preferences}
specification. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public InvalidPreferencesFormatException(Throwable cause)Constructs an InvalidPreferencesFormatException with the specified
cause.
super(cause);
| public InvalidPreferencesFormatException(String message)Constructs an InvalidPreferencesFormatException with the specified
detail message.
super(message);
| public InvalidPreferencesFormatException(String message, Throwable cause)Constructs an InvalidPreferencesFormatException with the specified
detail message and cause.
super(message, cause);
|
|