JSR 292 contains a set of reflective methods for producing method handles to access fields and methods of loaded classes. The methods are found on java.dyn.MethodHandles.Lookup.
When any of these methods fails, it throws a java.dyn.NoAccessException. In the JSR 292 EDR, this is an unchecked exception, which makes the demos work nicer, but is not consistent with other reflective operations in Java.
In fact, java.dyn.NoAccessException should extend java.lang.ReflectiveOperationException, like the other exceptions thrown by reflective operations. This will make it a checked exception.