KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > core > BuilderConfigurationException


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.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 JavaDoc {
23
24     //javadoc is inherited
25
public BuilderConfigurationException() {
26         super();
27     }
28
29     //javadoc is inherited
30
public BuilderConfigurationException(String JavaDoc message) {
31         super(message);
32     }
33
34     //javadoc is inherited
35
public BuilderConfigurationException(Throwable JavaDoc cause) {
36         super(cause);
37     }
38
39     //javadoc is inherited
40
public BuilderConfigurationException(String JavaDoc message, Throwable JavaDoc cause) {
41         super(message,cause);
42     }
43
44 }
45
46
Popular Tags