public Object evaluate(Object argument) {
try {
return Ognl.getValue(ognlExpression, argument);
} catch (OgnlException oe) {
throw new FelEvaluationException("Could not evaluate OGNL expression '" + expressionAsString +
"' on argument '" + String.valueOf(argument), oe);
}
}