Package org.hibernate.exception.spi
Interface ViolatedConstraintNameExtractor
- All Known Implementing Classes:
TemplatedViolatedConstraintNameExtractor
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
An object that can extract the name of a violated database constraint
from a
SQLException
that results from the constraint violation.-
Method Summary
Modifier and TypeMethodDescription@Nullable String
Extract the name of the violated constraint from the givenSQLException
.
-
Method Details
-
extractConstraintName
Extract the name of the violated constraint from the givenSQLException
.- Parameters:
sqle
- The exception that was the result of the constraint violation.- Returns:
- The extracted constraint name.
-