KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openlaszlo > sc > CompilerException


1 /* *****************************************************************************
2  * CompilerException.java
3  * ****************************************************************************/

4
5 /* J_LZ_COPYRIGHT_BEGIN *******************************************************
6 * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
7 * Use is subject to license terms. *
8 * J_LZ_COPYRIGHT_END *********************************************************/

9
10 package org.openlaszlo.sc;
11 import org.jdom.Element;
12
13 /** Represents an input error in script compilation.
14  *
15  * @author Oliver Steele
16  * @version 1.0
17  */

18 public class CompilerException extends RuntimeException JavaDoc {
19     /** Constructs an instance.
20      */

21     public CompilerException() {
22         super();
23     }
24     
25     /** Constructs an instance.
26      * @param message a string
27      */

28     public CompilerException(String JavaDoc message) {
29         super(message);
30     }
31 }
32
Popular Tags