Class ExpressionParseException

All Implemented Interfaces:
Serializable

public class ExpressionParseException extends RuntimeException
Exception thrown if expression cannot be parsed correctly.
See Also:
  • Constructor Details

    • ExpressionParseException

      public ExpressionParseException(String descrip, int index)
  • Method Details

    • getDescription

      public String getDescription()
      Returns the description that explains why the exception was thrown.
    • getIndex

      public int getIndex()
      Returns an index value into the expression string. Note, the index value may be less than zero or greater then the length of the expression string.
    • toString

      public String toString()
      Returns a string formatted such as "(index) description".
      Overrides:
      toString in class Throwable