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

BackingStoreException

public class BackingStoreException extends Exception
An exception to indicate that an error was encountered while accessing the backing store.
since
Android 1.0

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

param
s the detailed exception message.
since
Android 1.0

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

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

        super(t);
    
Methods Summary