1 /* *****************************************************************************2 * CompilerException.java3 * ****************************************************************************/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 Steele16 * @version 1.017 */18 public class CompilerException extends RuntimeException {19 /** Constructs an instance.20 */21 public CompilerException() {22 super();23 }24 25 /** Constructs an instance.26 * @param message a string27 */28 public CompilerException(String message) {29 super(message);30 }31 }32