source: trunk/yao/share/antlr-2.7.7/antlr/CharStreamException.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: 552 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/CharStreamException.java#2 $
8 */
9
10/**
11 * Anything that goes wrong while generating a stream of characters
12 */
13public class CharStreamException extends ANTLRException {
14    /**
15     * CharStreamException constructor comment.
16     * @param s java.lang.String
17     */
18    public CharStreamException(String s) {
19        super(s);
20    }
21}
Note: See TracBrowser for help on using the repository browser.