01: package org.shiftone.cache;
02:
03: /**
04: * @version $Revision: 1.2 $
05: * @author <a href="mailto:jeff@shiftone.org">Jeff Drost</a>
06: */
07: public class ConfigurationException extends CacheException {
08:
09: public ConfigurationException(String message) {
10: super (message);
11: }
12:
13: public ConfigurationException(String message, Throwable rootCause) {
14: super (message, rootCause);
15: }
16:
17: public ConfigurationException(Throwable cause) {
18: super(cause);
19: }
20: }
|