1 19 package javax.util.jcache; 20 21 25 public class CacheNotAvailableException extends CacheException { 26 30 public CacheNotAvailableException() { 31 } 32 33 40 public CacheNotAvailableException(final String message, 41 final Exception cause) { 42 super(message, cause); 43 } 44 45 51 public CacheNotAvailableException(final Exception cause) { 52 super(cause); 53 } 54 55 61 public CacheNotAvailableException(final String msg) { 62 super(msg); 63 } 64 } 65 | Popular Tags |