throw new IllegalArgumentException("Unable to create function binder " + functionBinderClass.getName() + " for function " + method);
}
private static String getDescription(AnnotatedElement annotatedElement)
{
Description description = annotatedElement.getAnnotation(Description.class);
return (description == null) ? null : description.value();
}