Class java.lang.Class

Changed Methods
Constructor<T> getConstructor(Class<?>) Change in exceptions thrown from (java.lang.NoSuchMethodException, java.lang.SecurityException) to java.lang.NoSuchMethodException.
 
Constructor<?> getConstructors() Change in exceptions thrown from java.lang.SecurityException to no exceptions.
 
Class<?> getDeclaredClasses() Change in exceptions thrown from java.lang.SecurityException to no exceptions.
 
Constructor<T> getDeclaredConstructor(Class<?>) Change in exceptions thrown from (java.lang.NoSuchMethodException, java.lang.SecurityException) to java.lang.NoSuchMethodException.
 
Constructor<?> getDeclaredConstructors() Change in exceptions thrown from java.lang.SecurityException to no exceptions.
 
Field getDeclaredField(String) Change in exceptions thrown from (java.lang.NoSuchFieldException, java.lang.SecurityException) to java.lang.NoSuchFieldException.
 
Field[] getDeclaredFields() Change in exceptions thrown from java.lang.SecurityException to no exceptions.
 
Method getDeclaredMethod(String, Class<?>) Change in exceptions thrown from (java.lang.NoSuchMethodException, java.lang.SecurityException) to java.lang.NoSuchMethodException.
 
Method[] getDeclaredMethods() Change in exceptions thrown from java.lang.SecurityException to no exceptions.
 
Field getField(String) Change in exceptions thrown from (java.lang.NoSuchFieldException, java.lang.SecurityException) to java.lang.NoSuchFieldException.
 
Field[] getFields() Change in exceptions thrown from java.lang.SecurityException to no exceptions.
 
Method getMethod(String, Class<?>) Change in exceptions thrown from (java.lang.NoSuchMethodException, java.lang.SecurityException) to java.lang.NoSuchMethodException.
 
Method[] getMethods() Change in exceptions thrown from java.lang.SecurityException to no exceptions.