1 25 26 package org.objectweb.perseus.cache.api; 27 28 34 public class UnFixProtocolException extends CacheException { 35 36 public UnFixProtocolException() { 37 super("Impossible to unfix a CacheEntry already unused"); 38 } 39 40 public UnFixProtocolException(String msg) { 41 super(msg); 42 } 43 44 public UnFixProtocolException(Exception nested) { 45 super(nested); 46 } 47 48 public UnFixProtocolException(String msg, Exception nested) { 49 super(msg, nested); 50 } 51 } 52 | Popular Tags |