报告 Bean 验证约束注解中 maxmin 值的错误值。

示例:


public class Car {
  @NotNull
  @Size(min = 14, max = 2) // 'max' 值小于 'min' 值
  private String licensePlate;
}