Package org.springframework.jdbc.support
Class CustomSQLErrorCodesTranslation
java.lang.Object
org.springframework.jdbc.support.CustomSQLErrorCodesTranslation
JavaBean for holding custom JDBC error codes translation for a particular
database. The "exceptionClass" property defines which exception will be
thrown for the list of error codes specified in the errorCodes property.
- Since:
- 1.1
- Author:
- Thomas Risberg
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionString[]
Return the SQL error codes to match.Class<?>
Return the exception class for the specified error codes.void
setErrorCodes
(String... errorCodes) Set the SQL error codes to match.void
setExceptionClass
(Class<?> exceptionClass) Set the exception class for the specified error codes.
-
Constructor Details
-
CustomSQLErrorCodesTranslation
public CustomSQLErrorCodesTranslation()
-
-
Method Details
-
setErrorCodes
Set the SQL error codes to match. -
getErrorCodes
Return the SQL error codes to match. -
setExceptionClass
Set the exception class for the specified error codes. -
getExceptionClass
Return the exception class for the specified error codes.
-