ANTLRException.java
Upload User: afrynkmhm
Upload Date: 2007-01-06
Package Size: 1262k
Code Size: 0k
Development Platform:

Others

  1. package antlr;
  2. /* ANTLR Translator Generator
  3.  * Project led by Terence Parr at http://www.jGuru.com
  4.  * Software rights: http://www.antlr.org/RIGHTS.html
  5.  *
  6.  * $Id: //depot/code/org.antlr/release/antlr-2.7.0/antlr/ANTLRException.java#1 $
  7.  */
  8. public class ANTLRException extends Exception {
  9. public ANTLRException() {
  10. super();
  11. }
  12. public ANTLRException(String s) {
  13. super(s);
  14. }
  15. }