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 CacheLoaderException extends CacheException {
09:
10: public CacheLoaderException() {
11: }
12:
13: public CacheLoaderException(String errMsg) {
14: super (errMsg);
15: }
16:
17: public CacheLoaderException(Throwable cause) {
18: super (cause);
19: }
20:
21: public CacheLoaderException(String errMsg, Throwable cause) {
22: super(errMsg, cause);
23: }
24: }
|