01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
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 {
20:
21: /**
22: * @param string
23: */
24: public CacheConfigurationException(String string) {
25: super(string);
26: }
27:
28: }
|