1 package antlr;2 3 /* ANTLR Translator Generator4 * Project led by Terence Parr at http://www.jGuru.com5 * Software rights: http://www.antlr.org/RIGHTS.html6 *7 * $Id: //depot/code/org.antlr/main/main/antlr/SemanticException.java#5 $8 */9 10 public class SemanticException extends RecognitionException {11 public SemanticException(String s) {12 super(s);13 }14 15 public SemanticException(String s, String fileName, int line, int column) {16 super(s, fileName, line, column);17 }18 }19