01: package javax.cache.spi;
02:
03: import javax.cache.CacheException;
04:
05: /**
06: * @author <a href="mailto:ins23@yahoo.com">Nikita Ivanov</a>
07: */
08: public class CacheStoreException extends CacheException {
09:
10: public CacheStoreException() {
11: }
12:
13: public CacheStoreException(String errMsg) {
14: super (errMsg);
15: }
16:
17: public CacheStoreException(Throwable cause) {
18: super (cause);
19: }
20:
21: public CacheStoreException(String errMsg, Throwable cause) {
22: super(errMsg, cause);
23: }
24: }
|