FileDocCategorySizeDatePackage
InvalidPreferencesFormatException.javaAPI DocJava SE 5 API1949Fri Aug 26 14:57:28 BST 2005java.util.prefs

InvalidPreferencesFormatException

public 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.
author
Josh Bloch
version
1.7, 12/19/03
see
Preferences
since
1.4

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public InvalidPreferencesFormatException(Throwable cause)
Constructs an InvalidPreferencesFormatException with the specified cause.

param
cause the cause (which is saved for later retrieval by the {@link Throwable#getCause()} method).

        super(cause);
    
public InvalidPreferencesFormatException(String message)
Constructs an InvalidPreferencesFormatException with the specified detail message.

param
message the detail message. The detail message is saved for later retrieval by the {@link Throwable#getMessage()} method.

        super(message);
    
public InvalidPreferencesFormatException(String message, Throwable cause)
Constructs an InvalidPreferencesFormatException with the specified detail message and cause.

param
message the detail message. The detail message is saved for later retrieval by the {@link Throwable#getMessage()} method.
param
cause the cause (which is saved for later retrieval by the {@link Throwable#getCause()} method).

        super(message, cause);
    
Methods Summary