When evaluating object initialization, toString nullPointerException appear.
Method threw 'java.lang.NullPointerException' exception. Cannot evaluate XXXX.toString()
Code example which recreates this issue:
Car car = carUtils.objectMapper.readValue(new File(pathTo("carProperties.json")), Car.class);
Why is that happens? is the evaluation done using toSting() invocations?