1 17 18 package org.apache.lenya.ac.cache; 19 20 24 public class CachingException extends Exception { 25 26 29 public CachingException() { 30 super(); 31 } 32 33 37 public CachingException(String message) { 38 super(message); 39 } 40 41 46 public CachingException(String message, Throwable cause) { 47 super(message, cause); 48 } 49 50 54 public CachingException(Throwable cause) { 55 super(cause); 56 } 57 58 } 59 | Popular Tags |