1 3 9 10 package org.jboss.cache; 11 12 25 public class CacheException extends RuntimeException  26 { 27 28 private static final long serialVersionUID = -4386393072593859164L; 29 30 public CacheException() 31 { 32 super(); 33 } 34 35 public CacheException(Throwable cause) 36 { 37 super(cause); 38 } 39 40 public CacheException(String msg) 41 { 42 super(msg); 43 } 44 45 public CacheException(String msg, Throwable cause) 46 { 47 super(msg, cause); 48 } 49 } 50 | Popular Tags |