String expression = validationInfo.expression();
expr = evaluator.parseExpression(expression, Boolean.class, null);
resolver = new BeanVariableResolver(bean);
}
catch (ELException ele) {
throw new StripesRuntimeException(
"Could not parse the EL expression being used to validate field " +
name.getName() + ". This is not a transient error. Please double " +
"check the following expression for errors: " +
validationInfo.expression(), ele);
}