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/ANTLRException.java#4 $8 */9 10 public class ANTLRException extends Exception {11 12 public ANTLRException() {13 super();14 }15 16 public ANTLRException(String s) {17 super(s);18 }19 }20