ExpressionHelper.ParseException Class
- public static class ExpressionHelper.ParseException
extends IllegalArgumentException
Exception to report an error while parsing a query expression.
-
Hierarchy
-
Object
Throwable
Exception
RuntimeException
IllegalArgumentException
ExpressionHelper.ParseException
-
All Implemented Interfaces
-
Serializable
-
Enclosing class
-
ExpressionHelper
public int |
-
column
- The column number of the error.
|
public int |
-
line
- The line number of the error.
|
public String |
-
token
- The possible error token.
|
Methods from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
column
public int column
- The column number of the error.
Less than 0 for unknown.
line
public int line
- The line number of the error.
Less than 0 for unknown.
token
public String
token
- The possible error token.
Null for unknown.
ExpressionHelper.ParseException
public ExpressionHelper.ParseException(String
mesg,
int line,
int column,
String
token)
- Constructor.
getMessage() Method
public String
getMessage()
Get the exception message.
-
Overrides
-
Throwable.getMessage()