So basically went from Spring Boot 1.5.10 -> 1.5.15. Everything fine except for one thing. I have an object with a parent class that had a @Data annotation on it. It's now not able to build and saying
-Lombok needs a default constructor in the base class (has 2 constructors but no Lombok constructor annotation)
- java: no suitable constructor found for ErrorResponse(no arguments) constructor ErrorResponseObject(org.springframework.http.HttpStatus,java.lang.String,java.lang.String,java.util.Map) is not applicable (actual and formal argument lists differ in length) constructor
Have looked around haven't found anything or I just wasn't able to understand. Thanks~