1 25 26 package org.objectweb.perseus.cache.api; 27 28 34 public class InvalidCacheEntryException extends CacheException { 35 public InvalidCacheEntryException(Object oid) { 36 super("The entry has not been found in the cache: " + oid); 37 } 38 39 public InvalidCacheEntryException() { 40 super("The entry has not been found in the cache"); 41 } 42 43 public InvalidCacheEntryException(String msg) { 44 super(msg); 45 } 46 47 public InvalidCacheEntryException(Exception nested) { 48 super(nested); 49 } 50 51 public InvalidCacheEntryException(String msg, Exception nested) { 52 super(msg, nested); 53 } 54 } 55 | Popular Tags |