1 /* $Id: SyntaxErrorException.java,v 1.2 2004/06/29 09:50:39 kofron Exp $ */2 3 package SOFA.SOFAnode.Util;4 5 /**6 * The class for syntax error exceptions7 *8 * @author Stanislav Visnovsky9 * @version 1.0.010 */11 public class SyntaxErrorException extends Exception {12 13 /**14 * Creates the instance of a new syntax error exception.15 *16 * @author Stanislav Visnovsky17 * @version 1.0.018 */19 public SyntaxErrorException() { super(); }20 21 /**22 * Creates the instance of a new syntax error exception with a given comment.23 *24 * @author Stanislav Visnovsky25 * @version 1.0.026 * @param s the comment on the raised exception27 */28 public SyntaxErrorException(String s) { super(s); }29 }30