1 19 package javax.util.jcache; 20 21 26 public class DiskCacheException extends CacheException { 27 34 public DiskCacheException(final String message, final Exception cause) { 35 super(message, cause); 36 } 37 38 44 public DiskCacheException(final Exception cause) { 45 super(cause); 46 } 47 48 54 public DiskCacheException(final String msg) { 55 super(msg); 56 } 57 } 58 | Popular Tags |