Adds an expression to the specified array. @param ar input array @param expr new expression @throws QueryException query exception
(final ExprList ar, final Expr expr)
| 4734 | * @throws QueryException query exception |
| 4735 | */ |
| 4736 | private void add(final ExprList ar, final Expr expr) throws QueryException { |
| 4737 | if(expr == null) throw error(INCOMPLETE); |
| 4738 | ar.add(expr); |
| 4739 | } |
| 4740 | |
| 4741 | /** |
| 4742 | * Creates the specified error. |