private ExprAdditiveOper evalSubtraction(final ExprAdditive op1,
final ExprMultiplicative op2) throws PropertyException {
if (op1 == null || op2 == null) {
throw new PropertyException("Missing parameter: subtraction.");
}
return new ExprAdditiveOper(op1, op2, Expr.OPERATION_SUBTRACT);
}