|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception org.codehaus.groovy.grails.web.json.parser.ParseException
public class ParseException extends java.lang.Exception
This exception is thrown when parse errors are encountered. You can explicitly create objects of this exception type by calling the method generateParseException in the generated parser. You can modify this class to customize your error reporting mechanisms so long as you retain the public fields.
Field Summary | |
---|---|
Token |
currentToken
This is the last token that has been consumed successfully. |
protected java.lang.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). |
java.lang.String[] |
tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. |
Constructor Summary | |
ParseException(Token currentTokenVal, int expectedTokenSequencesVal, java.lang.String[] tokenImageVal)
This constructor is used by the method "generateParseException" in the generated parser. |
|
ParseException()
The following constructors are for use by you for whatever purpose you can think of. |
|
ParseException(java.lang.String message)
Constructor with message. |
Method Summary | |
---|---|
protected java.lang.String
|
add_escapes(java.lang.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. |
java.lang.String
|
getMessage()
This method has the standard behavior when this object has been created using the standard constructors. |
Methods inherited from class java.lang.Exception | |
---|---|
java.lang.Exception#printStackTrace(java.io.PrintStream), java.lang.Exception#printStackTrace(), java.lang.Exception#printStackTrace(java.io.PrintWriter), java.lang.Exception#fillInStackTrace(), java.lang.Exception#getCause(), java.lang.Exception#initCause(java.lang.Throwable), java.lang.Exception#toString(), java.lang.Exception#getMessage(), java.lang.Exception#getLocalizedMessage(), java.lang.Exception#getStackTrace(), java.lang.Exception#setStackTrace([Ljava.lang.StackTraceElement;), java.lang.Exception#wait(), java.lang.Exception#wait(long), java.lang.Exception#wait(long, int), java.lang.Exception#equals(java.lang.Object), java.lang.Exception#hashCode(), java.lang.Exception#getClass(), java.lang.Exception#notify(), java.lang.Exception#notifyAll() |
Methods inherited from class java.lang.Throwable | |
---|---|
java.lang.Throwable#printStackTrace(java.io.PrintStream), java.lang.Throwable#printStackTrace(), java.lang.Throwable#printStackTrace(java.io.PrintWriter), java.lang.Throwable#fillInStackTrace(), java.lang.Throwable#getCause(), java.lang.Throwable#initCause(java.lang.Throwable), java.lang.Throwable#toString(), java.lang.Throwable#getMessage(), java.lang.Throwable#getLocalizedMessage(), java.lang.Throwable#getStackTrace(), java.lang.Throwable#setStackTrace([Ljava.lang.StackTraceElement;), java.lang.Throwable#wait(), java.lang.Throwable#wait(long), java.lang.Throwable#wait(long, int), java.lang.Throwable#equals(java.lang.Object), java.lang.Throwable#hashCode(), java.lang.Throwable#getClass(), java.lang.Throwable#notify(), java.lang.Throwable#notifyAll() |
Field Detail |
---|
public Token currentToken
protected java.lang.String eol
public int expectedTokenSequences
protected boolean specialConstructor
public java.lang.String[] tokenImage
Constructor Detail |
---|
public ParseException(Token currentTokenVal, int expectedTokenSequencesVal, java.lang.String[] tokenImageVal)
public ParseException()
public ParseException(java.lang.String message)
Method Detail |
---|
protected java.lang.String add_escapes(java.lang.String str)
@Override public java.lang.String getMessage()
Groovy Documentation