public class ParseException extends ExpressionException
expressionString, position| Constructor and Description | 
|---|
| ParseException(int position,
              String message)Creates a new expression parsing exception. | 
| ParseException(int position,
              String message,
              Throwable cause)Creates a new expression parsing exception. | 
| ParseException(String expressionString,
              int position,
              String message)Creates a new expression parsing exception. | 
getExpressionString, getMessage, getPosition, getSimpleMessage, toDetailedStringaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ParseException(String expressionString, int position, String message)
expressionString - the expression string that could not be parsedposition - the position in the expression string where the problem occurredmessage - description of the problem that occurredpublic ParseException(int position,
                      String message,
                      Throwable cause)
position - the position in the expression string where the problem occurredmessage - description of the problem that occurredcause - the underlying cause of this exceptionpublic ParseException(int position,
                      String message)
position - the position in the expression string where the problem occurredmessage - description of the problem that occurred