KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > shiftone > cache > ConfigurationException


1 package org.shiftone.cache;
2
3
4
5 /**
6  * @version $Revision: 1.2 $
7  * @author <a HREF="mailto:jeff@shiftone.org">Jeff Drost</a>
8  */

9 public class ConfigurationException extends CacheException
10 {
11
12     public ConfigurationException(String JavaDoc message)
13     {
14         super(message);
15     }
16
17
18     public ConfigurationException(String JavaDoc message, Throwable JavaDoc rootCause)
19     {
20         super(message, rootCause);
21     }
22
23
24     public ConfigurationException(Throwable JavaDoc cause)
25     {
26         super(cause);
27     }
28 }
29
Popular Tags