KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > antlr > ANTLRError


1 package antlr;
2
3 /* ANTLR Translator Generator
4  * Project led by Terence Parr at http://www.jGuru.com
5  * Software rights: http://www.antlr.org/RIGHTS.html
6  *
7  * $Id: //depot/code/org.antlr/main/main/antlr/ANTLRError.java#3 $
8  */

9
10 public class ANTLRError extends Error JavaDoc {
11
12     /**
13      * ANTLRError constructor comment.
14      */

15     public ANTLRError() {
16         super();
17     }
18
19     /**
20      * ANTLRError constructor comment.
21      * @param s java.lang.String
22      */

23     public ANTLRError(String JavaDoc s) {
24         super(s);
25     }
26 }
27
Popular Tags