(CachedMethod method, Object object, Object[] arguments)
| 28 | public class Reflector { |
| 29 | |
| 30 | public Object invoke(CachedMethod method, Object object, Object[] arguments) { |
| 31 | return noSuchMethod(method, object, arguments); |
| 32 | } |
| 33 | |
| 34 | protected Object noSuchMethod(CachedMethod method, Object object, Object[] arguments) { |
| 35 | throw new MissingMethodException(method.getName(), method.getDeclaringClass().getTheClass(), arguments, false); |
no test coverage detected