Hello.
I'm using
com.atlassian.jira.jql.parser.DefaultJqlQueryParser
parser on JVM. When my jql cannot be parsed correctly, I get an error message of form like:
Error<1:54> - jql.parse.expected.text.eof[)]
for jql:
key in (AA-11111, AA-12345) AND status not in (Closed
I'd very much like to get an error like one during use of search endpoint on real Jira:
Error in the JQL Query: Expecting ')' before the end of the query.
Can I somehow achieve this? Or it's just a functionality of Jira which is not included in parser lib?