KickJava   Java API By Example, From Geeks To Geeks.

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


1 // $Id: CacheException.java,v 1.5 2006/12/11 21:14:34 genman Exp $
2

3 /*
4  * JBoss, the OpenSource J2EE webOS
5  *
6  * Distributable under LGPL license.
7  * See terms of license at gnu.org.
8  */

9
10 package org.jboss.cache;
11
12 /**
13  * CacheException, mother of all cache exceptions
14  *
15  * @author <a HREF="mailto:bela@jboss.org">Bela Ban</a>
16  * @author <a HREF="mailto:manik@jboss.org">Manik Surtani</a>
17  * @version $Revision: 1.5 $
18  * <p/>
19  * <p><b>Revisions:</b>
20  * <p/>
21  * <p>Dec 27 2002 Bela Ban: first implementation
22  * <p>Jan 20 2003 Bela Ban: extend NestedException (otherwise build with JDK 1.3 fails)
23  * <p>Jul 17 2006 Manik Surtani: extends RuntimeException, exception chaining ctor
24  */

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