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

BackingStoreException

public class BackingStoreException extends Exception
Thrown to indicate that a preferences operation could not complete because of a failure in the backing store, or a failure to contact the backing store.
author
Josh Bloch
version
1.7, 12/19/03
since
1.4

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public BackingStoreException(String s)
Constructs a BackingStoreException with the specified detail message.

param
s the detail message.

        super(s);
    
public BackingStoreException(Throwable cause)
Constructs a BackingStoreException with the specified cause.

param
cause the cause

        super(cause);
    
Methods Summary