01: package ri.cache.loader;
02:
03: import javax.cache.spi.CacheLoaderException;
04:
05: /**
06: * PutNotPermittedException
07: *
08: * @author Brian Goetz
09: */
10: public class PutNotPermittedException extends CacheLoaderException {
11: public PutNotPermittedException() {
12: }
13:
14: public PutNotPermittedException(String message) {
15: super (message);
16: }
17:
18: public PutNotPermittedException(String message, Throwable cause) {
19: super (message, cause);
20: }
21:
22: public PutNotPermittedException(Throwable cause) {
23: super(cause);
24: }
25: }
|