[FIX] correct the JPA display of minimum error

This commit is contained in:
Edouard DUPIN 2024-05-22 16:29:49 +02:00
parent c843d7a64b
commit 6f36f98cd6

View File

@ -280,7 +280,7 @@ public class CheckJPA<T> implements CheckFunctionInterface {
}
if (elemTyped.length() < limitSize.min()) {
throw new InputException(baseName + fieldName,
"Too small size (constraints) must be >= " + limitSize.max());
"Too small size (constraints) must be >= " + limitSize.min());
}
});
}