KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > antlr > ANTLRException


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/ANTLRException.java#4 $
8  */

9
10 public class ANTLRException extends Exception JavaDoc {
11
12     public ANTLRException() {
13         super();
14     }
15
16     public ANTLRException(String JavaDoc s) {
17         super(s);
18     }
19 }
20
Popular Tags