Constructors Summary |
---|
public StoreException()Creates a new instance of StoreException without detail message.
|
public StoreException(String msg)Constructs an instance of StoreException with the specified detail message.
super(msg);
|
public StoreException(Throwable t)
super(t);
|
public StoreException(String msg, Throwable t)
super (msg, t);
|