Description
WicketMessage: no set method defined for value: true on object: ...
at org.apache.wicket.util.lang.PropertyResolver$MethodGetAndSet.setValue(PropertyResolver.java:1107)
In case there is a getter method defined, it would significantly help debugging to display the get method name in the exception.
I suggest fixing the problem with:
- " on object: " + object);
+ " on object: " + object + " while respective getMethod being " + getMethod.getName());