throw new MethodNotFoundException(LocalMessages.get("error.identifier.method.notamethod", name, value.getClass()));
}
public MethodInfo getMethodInfo(Bindings bindings, ELContext context, Class<?> returnType, Class<?>[] paramTypes) {
Method method = getMethod(bindings, context, returnType, paramTypes);
return new MethodInfo(method.getName(), method.getReturnType(), paramTypes);
}