Reports incorrect values of max and min values in Bean Validation constraint annotations.

Example:


public class Car {
  @NotNull
  @Size(min = 14, max = 2) // 'max' value is less than 'min' value
  private String licensePlate;
}