static O invokeMethod(Method m, O o, O... args) ctex { try { ret m.invoke(o, args); } catch (InvocationTargetException e) { throw rethrow(getCause(e)); } }