Skip to content

Commit

Permalink
HHH-7032 : Deprecate Dialect.buildSQLExceptionConverter()
Browse files Browse the repository at this point in the history
  • Loading branch information
gbadner committed Feb 8, 2012
1 parent b8acbc8 commit 4595df2
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -60,7 +60,6 @@
import org.hibernate.dialect.lock.SelectLockingStrategy;
import org.hibernate.engine.jdbc.LobCreator;
import org.hibernate.engine.spi.SessionImplementor;
import org.hibernate.exception.internal.SQLStateConverter;
import org.hibernate.exception.spi.ConversionContext;
import org.hibernate.exception.spi.SQLExceptionConversionDelegate;
import org.hibernate.exception.spi.SQLExceptionConverter;
Expand Down Expand Up @@ -1526,9 +1525,11 @@ public String getCurrentTimestampSQLFunctionName() {
* @return The Dialect's preferred SQLExceptionConverter, or null to
* indicate that the default {@link SQLExceptionConverter} should be used.
*
* @see {@link #buildSQLExceptionConversionDelegate()} should be
* @see {@link #buildSQLExceptionConversionDelegate()}
* @deprecated {@link #buildSQLExceptionConversionDelegate()} should be
* overridden instead.
*/
@Deprecated
public SQLExceptionConverter buildSQLExceptionConverter() {
return null;
}
Expand Down

0 comments on commit 4595df2

Please sign in to comment.