Serializable
public class ParseException extends Exception
Modifier and Type | Field | Description |
---|---|---|
Token |
currentToken |
This is the last token that has been consumed successfully.
|
protected static String |
EOL |
The end of line string (we do not use System.getProperty("") so that we are compatible with Android/GWT);
|
int[][] |
expectedTokenSequences |
Each entry in this array is an array of integers.
|
String[] |
tokenImage |
This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred.
|
Constructor | Description |
---|---|
ParseException() |
The following constructors are for use by you for whatever
purpose you can think of.
|
ParseException(Token currentTokenVal,
int[][] expectedTokenSequencesVal,
String[] tokenImageVal) |
|
ParseException(Token currentTokenVal,
int[][] expectedTokenSequencesVal,
String[] tokenImageVal,
String lexicalStateName) |
This constructor is used by the method "generateParseException"
in the generated parser.
|
ParseException(String message) |
Constructor with message.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
protected static String EOL
public Token currentToken
public int[][] expectedTokenSequences
public String[] tokenImage
public ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, String[] tokenImageVal)
public ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, String[] tokenImageVal, String lexicalStateName)
public ParseException()
public ParseException(String message)
Copyright © 2007–2019. All rights reserved.