RecognitionException.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

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/RecognitionException.java#1 $
  7.  */
  8. public class RecognitionException extends ANTLRException {
  9.     public String fileName; // not used by treeparsers
  10.     public int line; // not used by treeparsers
  11.     public int column; // not used by treeparsers
  12.     public RecognitionException() {
  13. super("parsing error");
  14.     }
  15.     /**
  16.      * RecognitionException constructor comment.
  17.      * @param s java.lang.String
  18.      */
  19.     public RecognitionException(String s) {
  20. super(s);
  21.     }
  22.     /**
  23.      * RecognitionException constructor comment.
  24.      * @param s java.lang.String
  25.      */
  26.     public RecognitionException(String s, String fileName, int line) {
  27. super(s);
  28. this.fileName = fileName;
  29. this.line = line;
  30.     }
  31.     public int getColumn() { return column; }
  32.     /** @deprecated As of ANTLR 2.7.0 */
  33.     public String getErrorMessage () { return getMessage(); }
  34.     public String getFilename() {
  35. return fileName;
  36.     }
  37.     public int getLine() { return line; }
  38.     public String toString() {
  39. return Tool.getFileLineString(fileName,line)+getMessage();
  40.     }
  41. }