FileDocCategorySizeDatePackage
InvalidPreferencesFormatException.javaAPI DocAndroid 1.5 API2267Wed May 06 22:41:04 BST 2009java.util.prefs

InvalidPreferencesFormatException

public class InvalidPreferencesFormatException extends Exception
An exception to indicate that the input XML file is not well-formed or could not be validated against the appropriate document type (specified by in the {@code Preferences}).
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public InvalidPreferencesFormatException(String s)
Constructs a new {@code InvalidPreferencesFormatException} instance with a detailed exception message.

param
s the detailed exception message.
since
Android 1.0

    
                                         
        
        super(s);
    
public InvalidPreferencesFormatException(String s, Throwable t)
Constructs a new {@code InvalidPreferencesFormatException} instance with a detailed exception message and a nested {@code Throwable}.

param
s the detailed exception message.
param
t the nested {@code Throwable}.
since
Android 1.0

        super(s,t);
    
public InvalidPreferencesFormatException(Throwable t)
Constructs a new {@code InvalidPreferencesFormatException} instance with a nested {@code Throwable}.

param
t the nested {@code Throwable}.
since
Android 1.0

        super(t);
    
Methods Summary