private ExprMultiplicativeOper evalMultiply(final ExprMultiplicative op1,
final ExprUnary op2) throws PropertyException {
if (op1 == null || op2 == null) {
throw new PropertyException("Missing parameter: multiplication.");
}
return new ExprMultiplicativeOper(op1, op2,
Expr.OPERATION_MULTIPLY);
}