source: trunk/yao/share/antlr-2.7.7/antlr/TokenStreamException.java @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 687 bytes
Line 
1package antlr;
2
3/* ANTLR Translator Generator
4 * Project led by Terence Parr at http://www.cs.usfca.edu
5 * Software rights: http://www.antlr.org/license.html
6 *
7 * $Id: //depot/code/org.antlr/release/antlr-2.7.7/antlr/TokenStreamException.java#2 $
8 */
9
10/**
11 * Anything that goes wrong while generating a stream of tokens.
12 */
13public class TokenStreamException extends ANTLRException {
14    public TokenStreamException() {
15    }
16
17    public TokenStreamException(String s) {
18        super(s);
19    }
20
21        public TokenStreamException(String message, Throwable cause) {
22                super(message, cause);
23        }
24
25        public TokenStreamException(Throwable cause) {
26                super(cause);
27        }
28}
Note: See TracBrowser for help on using the repository browser.