public class ParseException
extends java.lang.Exception
You can modify this class to customize your error reporting mechanisms so long as you retain the public fields.
Modifier and Type | Field and Description |
---|---|
Token |
currentToken
This is the last token that has been consumed successfully.
|
protected static java.lang.String |
EOL
The end of line string for this machine.
|
int[][] |
expectedTokenSequences
Each entry in this array is an array of integers.
|
private static long |
serialVersionUID
The version identifier for this Serializable class.
|
java.lang.String[] |
tokenImage
This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred.
|
Constructor and Description |
---|
ParseException()
The following constructors are for use by you for whatever
purpose you can think of.
|
ParseException(java.lang.String message)
Constructor with message.
|
ParseException(java.lang.String message,
java.lang.Throwable cause)
Constructor with message.
|
ParseException(Token currentTokenVal,
int[][] expectedTokenSequencesVal,
java.lang.String[] tokenImageVal)
This constructor is used by the method "generateParseException"
in the generated parser.
|
Modifier and Type | Method and Description |
---|---|
private static java.lang.String |
buildMessage(Token currentToken,
int[][] expectedTokenSequences,
java.lang.String[] tokenImage)
It uses "currentToken" and "expectedTokenSequences" to generate a parse
error message and returns it.
|
public Token currentToken
protected static java.lang.String EOL
public int[][] expectedTokenSequences
private static final long serialVersionUID
public java.lang.String[] tokenImage
public ParseException()
public ParseException(java.lang.String message)
public ParseException(java.lang.String message, java.lang.Throwable cause)
public ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, java.lang.String[] tokenImageVal)
private static java.lang.String buildMessage(Token currentToken, int[][] expectedTokenSequences, java.lang.String[] tokenImage)