This exception should be thrown if something wrong happens when dealing with {@link QueryNode}s.
It also supports NLS messages.
176177178179180181182183184185186
protected QueryNode preProcessNode(QueryNode node) throws QueryNodeException { if (node instanceof WildcardQueryNode || node instanceof FuzzyQueryNode) { throw new QueryNodeException(new MessageImpl( QueryParserMessages.EMPTY_MESSAGE)); } return node;