KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > gui > html > CircularParseException


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.gui.html;
11
12 import org.mmbase.module.ParseException;
13
14 /**
15  * This exception gets thrown when a circular PART is detected.
16  * @application SCAN
17  * @author Rico Jansen
18  * @version $Id: CircularParseException.java,v 1.6 2004/10/01 08:43:44 pierre Exp $
19  */

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