[FIX] correct the JPA display of minimum error
This commit is contained in:
parent
c843d7a64b
commit
6f36f98cd6
@ -280,7 +280,7 @@ public class CheckJPA<T> implements CheckFunctionInterface {
|
|||||||
}
|
}
|
||||||
if (elemTyped.length() < limitSize.min()) {
|
if (elemTyped.length() < limitSize.min()) {
|
||||||
throw new InputException(baseName + fieldName,
|
throw new InputException(baseName + fieldName,
|
||||||
"Too small size (constraints) must be >= " + limitSize.max());
|
"Too small size (constraints) must be >= " + limitSize.min());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user