1 /*2 * SyntaxException.java3 *4 * Created on April 21, 2005, 3:03 PM5 */6 7 package analyzer.listeners;8 9 /**10 *11 * @author loicsegapelli12 */13 public class SyntaxException extends java.lang.Exception {14 15 /**16 * Creates a new instance of <code>SyntaxException</code> without detail message.17 */18 public SyntaxException() {19 }20 21 22 /**23 * Constructs an instance of <code>SyntaxException</code> with the specified detail message.24 * @param msg the detail message.25 */26 public SyntaxException(String msg) {27 super(msg);28 }29 }30