BackingStoreExceptionpublic class BackingStoreException extends Exception An exception to indicate that an error was encountered while accessing the
backing store. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public BackingStoreException(String s)Constructs a new {@code BackingStoreException} instance with a detailed exception
message.
super(s);
| public BackingStoreException(Throwable t)Constructs a new {@code BackingStoreException} instance with a nested {@code Throwable}.
super(t);
|
|