Class QueryNodeParseException

    • Field Detail

      • query

        private java.lang.CharSequence query
      • beginColumn

        private int beginColumn
      • beginLine

        private int beginLine
      • errorToken

        private java.lang.String errorToken
    • Constructor Detail

      • QueryNodeParseException

        public QueryNodeParseException​(Message message)
      • QueryNodeParseException

        public QueryNodeParseException​(java.lang.Throwable throwable)
      • QueryNodeParseException

        public QueryNodeParseException​(Message message,
                                       java.lang.Throwable throwable)
    • Method Detail

      • setQuery

        public void setQuery​(java.lang.CharSequence query)
      • getQuery

        public java.lang.CharSequence getQuery()
      • setErrorToken

        protected void setErrorToken​(java.lang.String errorToken)
        Parameters:
        errorToken - the errorToken in the query
      • getErrorToken

        public java.lang.String getErrorToken()
      • setNonLocalizedMessage

        public void setNonLocalizedMessage​(Message message)
      • getBeginLine

        public int getBeginLine()
        For EndOfLine and EndOfFile ("<EOF>") parsing problems the last char in the string is returned For the case where the parser is not able to figure out the line and column number -1 will be returned
        Returns:
        line where the problem was found
      • getBeginColumn

        public int getBeginColumn()
        For EndOfLine and EndOfFile ("<EOF>") parsing problems the last char in the string is returned For the case where the parser is not able to figure out the line and column number -1 will be returned
        Returns:
        column of the first char where the problem was found
      • setBeginLine

        protected void setBeginLine​(int beginLine)
        Parameters:
        beginLine - the beginLine to set
      • setBeginColumn

        protected void setBeginColumn​(int beginColumn)
        Parameters:
        beginColumn - the beginColumn to set