KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > cache > CacheException


1 //$Id: CacheException.java,v 1.2 2005/04/15 18:20:53 steveebersole Exp $
2
package org.hibernate.cache;
3
4 import org.hibernate.HibernateException;
5
6 /**
7  * Something went wrong in the cache
8  */

9 public class CacheException extends HibernateException {
10     
11     public CacheException(String JavaDoc s) {
12         super(s);
13     }
14
15     public CacheException(String JavaDoc s, Exception JavaDoc e) {
16         super(s, e);
17     }
18     
19     public CacheException(Exception JavaDoc e) {
20         super(e);
21     }
22     
23 }
24
25
26
27
28
29
30
Popular Tags