*/
public static Method findMethod (Class clazz, String name, String descriptor, Class... classes) throws Throwable {
ClassMethod method = ClassCache.getFor(clazz).findMethod(name, classes);
if (method != null) return method.getJavaMember();
throw new InterceptorInvocationException("Could not find method: " + name + " (" + descriptor + ") for: " + clazz.getName());
}