diff --git a/src/main/java/com/harleyoconnor/javautilities/reflect/ReflectChecked.java b/src/main/java/com/harleyoconnor/javautilities/reflect/ReflectChecked.java index 2d038dd..8c6f70e 100644 --- a/src/main/java/com/harleyoconnor/javautilities/reflect/ReflectChecked.java +++ b/src/main/java/com/harleyoconnor/javautilities/reflect/ReflectChecked.java @@ -265,7 +265,6 @@ public Method getMethodAccessible(final String name, final List> parame * @throws NoSuchMethodException if a method with the specified {@code name} and parameter types (as determined * by the specified {@code arguments}) does not exist in the class being reflected * on - * @throws IllegalAccessException if the member method could not be accessed * @throws InvocationTargetException if the underlying method invoked throws an exception * @see Method#invoke(Object, Object...) */ @@ -308,7 +307,6 @@ public V invoke(final String name, final List arguments) * @throws NoSuchMethodException if a method with the specified {@code name} and parameter types (as determined * by the specified {@code arguments}) does not exist in the class being reflected * on - * @throws IllegalAccessException if the member method could not be accessed * @throws InvocationTargetException if the underlying method invoked throws an exception * @see Method#invoke(Object, Object...) */