paramClasses[i] = gwtTypeToJavaClass(params[i].getType());
}
try {
return clazz.getMethod(method.getName(), paramClasses);
} catch (SecurityException e) {
throw new CheckedExceptionWrapper(e);
} catch (NoSuchMethodException e) {
throw new CheckedExceptionWrapper("NoSuchMethod? GWT Method: " + method.toString() + " EnclosingType: " + method.getEnclosingType().toString(), e);
}
}