1 package persistence.antlr;2 3 /* ANTLR Translator Generator4 * Project led by Terence Parr at http://www.jGuru.com5 * Software rights: http://www.antlr.org/license.html6 *7 */8 9 public class ANTLRException extends Exception {10 11 public ANTLRException() {12 super();13 }14 15 public ANTLRException(String s) {16 super(s);17 }18 }19