org.springframework.jdbc.support
Class CustomSQLErrorCodesTranslation

java.lang.Object
  extended by org.springframework.jdbc.support.CustomSQLErrorCodesTranslation

public class CustomSQLErrorCodesTranslation
extends Object

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:
SQLErrorCodeSQLExceptionTranslator

Constructor Summary
CustomSQLErrorCodesTranslation()
           
 
Method Summary
 String[] getErrorCodes()
          Return the SQL error codes to match.
 Class getExceptionClass()
          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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CustomSQLErrorCodesTranslation

public CustomSQLErrorCodesTranslation()
Method Detail

setErrorCodes

public void setErrorCodes(String[] errorCodes)
Set the SQL error codes to match.


getErrorCodes

public String[] getErrorCodes()
Return the SQL error codes to match.


setExceptionClass

public void setExceptionClass(Class exceptionClass)
Set the exception class for the specified error codes.


getExceptionClass

public Class getExceptionClass()
Return the exception class for the specified error codes.