| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.util.prefs.InvalidPreferencesFormatException
InvalidPreferencesFormatException | public class InvalidPreferencesFormatException extends Exception (Code) | | 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
Preferences
specification.
author: Josh Bloch version: 1.14, 05/05/07 See Also: Preferences since: 1.4 |
InvalidPreferencesFormatException | public InvalidPreferencesFormatException(Throwable cause)(Code) | | Constructs an InvalidPreferencesFormatException with the specified
cause.
Parameters: cause - the cause (which is saved for later retrieval by theThrowable.getCause method). |
InvalidPreferencesFormatException | public InvalidPreferencesFormatException(String message)(Code) | | Constructs an InvalidPreferencesFormatException with the specified
detail message.
Parameters: message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage method. |
InvalidPreferencesFormatException | public InvalidPreferencesFormatException(String message, Throwable cause)(Code) | | Constructs an InvalidPreferencesFormatException with the specified
detail message and cause.
Parameters: message - the detail message. The detail message is saved forlater retrieval by the Throwable.getMessage method. Parameters: cause - the cause (which is saved for later retrieval by theThrowable.getCause method). |
|
|
|