Class QueryParseException

All Implemented Interfaces:
Serializable

public class QueryParseException extends QueryException
QueryParseException is root exception for all (intentional) exceptions from the various parsers where the error is to do with the syntax of a query.
See Also:
  • Constructor Details

    • QueryParseException

      public QueryParseException(int line, int column)
    • QueryParseException

      public QueryParseException(Throwable cause, int line, int column)
    • QueryParseException

      public QueryParseException(String msg, int line, int column)
    • QueryParseException

      public QueryParseException(String msg, Throwable cause, int line, int column)
  • Method Details

    • getColumn

      public int getColumn()
      Column number where the parse exception occurred.
    • getLine

      public int getLine()
      Line number where the parse exception occurred.
    • formatMessage

      public static String formatMessage(String msg, int line, int column)