public class ParseException extends Exception
限定符和类型 | 字段和说明 |
---|---|
Token |
currentToken
This is the last token that has been consumed successfully.
|
protected String |
eol
The end of line string for this machine.
|
int[][] |
expectedTokenSequences
Each entry in this array is an array of integers.
|
protected boolean |
specialConstructor
This variable determines which constructor was used to create
this object and thereby affects the semantics of the
"getMessage" method (see below).
|
String[] |
tokenImage
This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred.
|
构造器和说明 |
---|
ParseException()
The following constructors are for use by you for whatever
purpose you can think of.
|
ParseException(String message) |
ParseException(Token currentTokenVal,
int[][] expectedTokenSequencesVal,
String[] tokenImageVal)
This constructor is used by the method "generateParseException"
in the generated parser.
|
限定符和类型 | 方法和说明 |
---|---|
protected String |
add_escapes(String str)
Used to convert raw characters to their escaped version
when these raw version cannot be used as part of an ASCII
string literal.
|
String |
getMessage()
This method has the standard behavior when this object has been
created using the standard constructors.
|
protected boolean specialConstructor
public Token currentToken
public int[][] expectedTokenSequences
public String[] tokenImage
protected String eol
public ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, String[] tokenImageVal)
public ParseException()
public ParseException(String message)
public String getMessage()
getMessage
在类中 Throwable
Copyright © 2009 The Apache Software Foundation