This commit is contained in:
Lukas Eder 2024-06-17 10:43:32 +02:00
parent 22ae28bbe1
commit 7f559da76c

View File

@ -3635,7 +3635,7 @@ final class Tools {
if (m.contains("constraint violated: duplicate key"))
return new IntegrityConstraintViolationException("SQL [" + sql + "]; " + e.getMessage(), e);
else if (m.contains("constraint error: not null constraint failed"));
else if (m.contains("constraint error: not null constraint failed"))
return new IntegrityConstraintViolationException("SQL [" + sql + "]; " + e.getMessage(), e);
}
}