Class ParseException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ParseFailureException

public class ParseException extends AppException
Runtime exception used to indicate a failure during the parsing of an expression.
Since:
5.0
Author:
O. Kerpershoek, F. van der Meer
See Also:
  • Constructor Details

    • ParseException

      public ParseException(String message, Throwable cause)
      Constructs a parse exception with an object containing the failures and the root cause of the error.
      Parameters:
      message - a descriptive error messages.
      cause - The root cause of the parse error.
    • ParseException

      public ParseException(String message)
      Constructs a parse exception with a single message indicating the cause of the parse error.
      Parameters:
      message - The message describing the nature of the parse error.