1 64 65 package com.jcorporate.expresso.core.cache; 66 67 72 73 import com.jcorporate.expresso.kernel.exception.ChainedException; 74 75 76 81 public class CacheException 82 extends ChainedException { 83 86 public CacheException() { 87 super(); 88 } 89 90 95 public CacheException(String s) { 96 super(s); 97 } 98 99 105 public CacheException(String s, Throwable t) { 106 super(s, t); 107 } 108 109 114 public CacheException(Throwable t) { 115 super(t); 116 } 117 118 } 119 120 | Popular Tags |