KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Circular reference exception.
14  * This exception is thrown when circularity is detected between two builders,
15  * i.e. when the extend each other.
16  *
17  * @since MMBase-1.6
18  * @author Pierre van Rooden
19  * @version $Id: CircularReferenceException.java,v 1.4 2003/08/29 09:36:53 pierre Exp $
20  */

21 public class CircularReferenceException extends BuilderConfigurationException {
22
23     //javadoc is inherited
24
public CircularReferenceException() {
25         super();
26     }
27     
28     //javadoc is inherited
29
public CircularReferenceException(String JavaDoc message) {
30         super(message);
31     }
32
33     //javadoc is inherited
34
public CircularReferenceException(Throwable JavaDoc cause) {
35         super(cause);
36     }
37
38     //javadoc is inherited
39
public CircularReferenceException(String JavaDoc message, Throwable JavaDoc cause) {
40         super(message,cause);
41     }
42     
43 }
44
45
Popular Tags