Groovy Runtime Exception: Could not find matching constructor

If you encounter an exception like this: Then you most likely have a class InnerClass, which is declared inside BaseClass: And in some other class (even inherited from BaseClass) you are trying to instantiate InnerClass: Then you will get groovy.lang.GroovyRuntimeException: Could not find matching constructor. The point is that objects of inner classes in groovy need […]

READ MORE