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(String message,
Throwable t) |
ParseException(Throwable t) |
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.
|
int |
getColumn()
Returns the column number of the token in which the error occured
|
String |
getErrorInfo()
getErrorInfo() was added to the parser generated code to provide clean
output instead of the standard format of Exception.toString().
|
int |
getLine()
Returns the line number of the token in which the error occured
|
String |
getMessage()
This method has the standard behavior when this object has been
created using the standard constructors.
|
void |
printStackTrace()
Prints the stack trace for this exception and any
nested exception to
System.err. |
void |
printStackTrace(PrintStream ps)
Prints the stack trace of this exception and any nested
exception to the specified PrintStream.
|
void |
printStackTrace(PrintWriter pw)
Prints the stack trace of this exception and any nested
exception to the specified PrintWriter.
|
String |
toString()
Returns the location of the error and the error message.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTraceprotected 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 ParseException(Throwable t)
public String getMessage()
getMessage 在类中 Throwablepublic String getErrorInfo()
public int getColumn()
public int getLine()
protected String add_escapes(String str)
public String toString()
public void printStackTrace()
System.err.printStackTrace 在类中 Throwablepublic void printStackTrace(PrintStream ps)
printStackTrace 在类中 Throwableps - The PrintStream to print the stack trace to.
Must not be null.public void printStackTrace(PrintWriter pw)
printStackTrace 在类中 Throwablepw - The PrintWriter to print the stack trace to.
Must not be null.Copyright © 2023 onecode. All rights reserved.