KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > cache > CacheConfigurationException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.cache;
11
12 /**
13  * @javadoc
14  *
15  * @author Ernst Bunders
16  * @since MMBase-1.8
17  * @version $Id: CacheConfigurationException.java,v 1.3 2006/06/06 21:58:47 michiel Exp $
18  */

19 public class CacheConfigurationException extends Exception JavaDoc {
20
21
22     /**
23      * @param string
24      */

25     public CacheConfigurationException(String JavaDoc string) {
26         super(string);
27     }
28
29 }
30
Popular Tags