1 25 26 package org.objectweb.perseus.cache.api; 27 28 34 public class CacheException extends Exception { 35 36 protected Exception nestedException = null; 37 38 public CacheException() { 39 super(); 40 } 41 42 public CacheException(String msg) { 43 super(msg); 44 } 45 46 public CacheException(Exception nested) { 47 super(); 48 nestedException = nested; 49 } 50 51 public CacheException(String msg, Exception nested) { 52 super(msg); 53 nestedException = nested; 54 } 55 56 public Exception getNestedException() { 57 return nestedException; 58 } 59 } 60 | Popular Tags |