Class QueryParserException

  • All Implemented Interfaces:
    Serializable

    public class QueryParserException
    extends QueryProcessingException
    Thrown when a query cannot be parsed. This is most likely due to not following the Query Parser grammar, which defines how queries are parsed.
    See Also:
    Serialized Form
    • Constructor Detail

      • QueryParserException

        public QueryParserException()
        No-arg constructor required by Externalizable semantics.
      • QueryParserException

        public QueryParserException​(String message)
        Construct an instance with the message specified.
        Parameters:
        message - A message describing the exception
      • QueryParserException

        public QueryParserException​(Throwable e,
                                    String message)
        Construct an instance from a message and an exception to chain to this one.
        Parameters:
        message - A message describing the exception
        e - An exception to nest within this one
    • Method Detail

      • setParseException

        public void setParseException​(ParseException parseException)