1 package org.hibernate.cache; 3 4 import org.hibernate.HibernateException; 5 6 9 public class CacheException extends HibernateException { 10 11 public CacheException(String s) { 12 super(s); 13 } 14 15 public CacheException(String s, Exception e) { 16 super(s, e); 17 } 18 19 public CacheException(Exception e) { 20 super(e); 21 } 22 23 } 24 25 26 27 28 29 30 | Popular Tags |