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.module.core;
11:
12: /**
13: * Builder configuration exception.
14: * This exception is thrown when there is a (unrecoverable) foault in teh configuration
15: * of the builder file, i.e. a required builder file does not exist, a core builder is
16: * inactive, circularity is detected between two builders, etc.
17: *
18: * @since MMBase-1.6
19: * @author Pierre van Rooden
20: * @version $Id: BuilderConfigurationException.java,v 1.3 2003/08/29 09:36:53 pierre Exp $
21: */
22: public class BuilderConfigurationException extends RuntimeException {
23:
24: //javadoc is inherited
25: public BuilderConfigurationException() {
26: super ();
27: }
28:
29: //javadoc is inherited
30: public BuilderConfigurationException(String message) {
31: super (message);
32: }
33:
34: //javadoc is inherited
35: public BuilderConfigurationException(Throwable cause) {
36: super (cause);
37: }
38:
39: //javadoc is inherited
40: public BuilderConfigurationException(String message, Throwable cause) {
41: super(message, cause);
42: }
43:
44: }
|