01: /* *****************************************************************************
02: * CompilerException.java
03: * ****************************************************************************/
04:
05: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
06: * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
07: * Use is subject to license terms. *
08: * J_LZ_COPYRIGHT_END *********************************************************/
09:
10: package org.openlaszlo.sc;
11:
12: import org.jdom.Element;
13:
14: /** Represents an input error in script compilation.
15: *
16: * @author Oliver Steele
17: * @version 1.0
18: */
19: public class CompilerException extends RuntimeException {
20: /** Constructs an instance.
21: */
22: public CompilerException() {
23: super ();
24: }
25:
26: /** Constructs an instance.
27: * @param message a string
28: */
29: public CompilerException(String message) {
30: super(message);
31: }
32: }
|