awhitford / lombok.maven

Maven Plugin for Project Lombok
http://projectlombok.org/
MIT License
110 stars 36 forks source link

StandardException not supported #173

Open stijnb1234 opened 1 year ago

stijnb1234 commented 1 year ago

Lombok v1.18.21 adds StandardException. When I delombok my project, I get the following error on a class annotated with StandardException:

E:\IntelliJWorkspace\VehiclesPlus-v3\API\src\main\java\nl\sbdeveloper\vehiclesplus\api\vehicles\impl\StorageVehicle.java:135: error: constructor UnsupportedTrunkSizeException in class nl.sbdeveloper.vehiclesplus.api.exceptions.UnsupportedTrunkSizeException cannot be applied to given types;
                throw new UnsupportedTrunkSizeException("BaseVehicle " + getVehicleModel().getId() + " has an invalid trunk size.");
                      ^
  required: no arguments
  found: java.lang.String
  reason: actual and formal argument lists differ in length

This will probably be fixed by #162.