BackingStoreExceptionpublic 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. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public BackingStoreException(String s)Constructs a BackingStoreException with the specified detail message.
super(s);
| public BackingStoreException(Throwable cause)Constructs a BackingStoreException with the specified cause.
super(cause);
|
|