public Object invoke(FacesContext context, Object[] params)
throws EvaluationException, MethodNotFoundException {
try {
return m.invoke(ELAdaptor.getELContext(context), params);
} catch (javax.el.MethodNotFoundException e) {
throw new MethodNotFoundException(e.getMessage(), e.getCause());
} catch (ELException e) {
throw new EvaluationException(e.getMessage(), e.getCause());
}
}