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 /**10 * Anything that goes wrong while generating a stream of tokens.11 */12 public class TokenStreamException extends ANTLRException {13 public TokenStreamException() {14 }15 16 public TokenStreamException(String s) {17 super(s);18 }19 }20