Constructors Summary |
---|
public BackingStoreException()Creates a BackingStoreException with null as its detail message. The
cause is not initialized, and may subsequently be initialized by a call
to Throwable.initCause(java.lang.Throwable) .
|
public BackingStoreException(String message)constructs a BackingStoreException with the specified detail message
super(message);
|
public BackingStoreException(String message, Throwable th)Constructs a new BackingStoreException exception with the specified cause
and a detail message of (cause==null ? null : cause.toString())
super(message, th);
|