NoViableAltForCharException.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/NoViableAltForCharException.java#1 $
  7.  */
  8. public class NoViableAltForCharException extends RecognitionException {
  9.     public char foundChar;
  10.     public NoViableAltForCharException(char c, CharScanner scanner) {
  11. super("NoViableAlt");
  12. foundChar = c;
  13. this.line = scanner.getLine();
  14. this.fileName = scanner.getFilename();
  15.     }
  16.     public NoViableAltForCharException(char c, String fileName, int line) {
  17. super("NoViableAlt");
  18. foundChar = c;
  19. this.line = line;
  20. this.fileName = fileName;
  21.     }
  22.     /**
  23.      * @deprecated As of ANTLR 2.7.0
  24.      */
  25.     public String getErrorMessage()
  26.     {
  27. return getMessage();
  28.     }
  29.     /**
  30.      * Returns a clean error message (no line number/column information)
  31.      */
  32.     public String getMessage()
  33.     {
  34. return "unexpected char: "+(char)foundChar;
  35.     }
  36. }