Uses of Interface
org.hibernate.exception.SQLExceptionConverter

Packages that use SQLExceptionConverter
org.hibernate.cfg   
org.hibernate.dialect   
org.hibernate.engine   
org.hibernate.exception   
org.hibernate.impl   
org.hibernate.persister.collection   
 

Uses of SQLExceptionConverter in org.hibernate.cfg
 

Methods in org.hibernate.cfg that return SQLExceptionConverter
 SQLExceptionConverter Settings.getSQLExceptionConverter()
           
 

Uses of SQLExceptionConverter in org.hibernate.dialect
 

Methods in org.hibernate.dialect that return SQLExceptionConverter
 SQLExceptionConverter Dialect.buildSQLExceptionConverter()
          Build an instance of the SQLExceptionConverter preferred by this dialect for converting SQLExceptions into Hibernate's JDBCException hierarchy.
 

Uses of SQLExceptionConverter in org.hibernate.engine
 

Methods in org.hibernate.engine that return SQLExceptionConverter
 SQLExceptionConverter SessionFactoryImplementor.getSQLExceptionConverter()
          Retrieves the SQLExceptionConverter in effect for this SessionFactory.
 

Uses of SQLExceptionConverter in org.hibernate.exception
 

Classes in org.hibernate.exception that implement SQLExceptionConverter
 class SQLStateConverter
          A SQLExceptionConverter implementation which performs converion based on the underlying SQLState.
 

Methods in org.hibernate.exception that return SQLExceptionConverter
static SQLExceptionConverter SQLExceptionConverterFactory.buildSQLExceptionConverter(Dialect dialect, Properties properties)
          Build a SQLExceptionConverter instance.
static SQLExceptionConverter SQLExceptionConverterFactory.buildMinimalSQLExceptionConverter()
          Builds a minimal converter.
 

Methods in org.hibernate.exception with parameters of type SQLExceptionConverter
static JDBCException JDBCExceptionHelper.convert(SQLExceptionConverter converter, SQLException sqlException, String message)
          Converts the given SQLException into Hibernate's JDBCException hierarchy, as well as performing appropriate logging.
static JDBCException JDBCExceptionHelper.convert(SQLExceptionConverter converter, SQLException sqlException, String message, String sql)
          Converts the given SQLException into Hibernate's JDBCException hierarchy, as well as performing appropriate logging.
 

Uses of SQLExceptionConverter in org.hibernate.impl
 

Methods in org.hibernate.impl that return SQLExceptionConverter
 SQLExceptionConverter SessionFactoryImpl.getSQLExceptionConverter()
           
 

Uses of SQLExceptionConverter in org.hibernate.persister.collection
 

Methods in org.hibernate.persister.collection that return SQLExceptionConverter
protected  SQLExceptionConverter AbstractCollectionPersister.getSQLExceptionConverter()