1 18 package org.objectweb.perseus.cache.api; 19 20 25 public class CacheFullException extends CacheException { 26 public CacheFullException() { 27 this("The cache is full"); 28 } 29 30 public CacheFullException(String msg) { 31 super(msg); 32 } 33 34 public CacheFullException(Exception nested) { 35 super(nested); 36 } 37 38 public CacheFullException(String msg, Exception nested) { 39 super(msg, nested); 40 } 41 } 42 | Popular Tags |