I have a class that looks like the following:
public class MyClass { private String dPart1; public String getDPart1() { return dPart1; }
The naming convention of the property matters example in my own case I initially used
private String newimsi, getNewImsi();
the above failed with same exception
propertynotfoundexception
until I corrected to below before it worked
getNewimsi();