Uses of Class
org.hibernate.JDBCException

Packages that use JDBCException
org.hibernate.engine   
org.hibernate.exception   
org.hibernate.impl   
 

Uses of JDBCException in org.hibernate.engine
 

Methods in org.hibernate.engine that throw JDBCException
 void HibernateIterator.close()
           
 

Uses of JDBCException in org.hibernate.exception
 

Subclasses of JDBCException in org.hibernate.exception
 class ConstraintViolationException
          Implementation of JDBCException indicating that the requested DML operation resulted in a violation of a defined integrity constraint.
 class DataException
          Implementation of JDBCException indicating that evaluation of the valid SQL statement against the given data resulted in some illegal operation, mismatched types or incorrect cardinality.
 class GenericJDBCException
          Generic, non-specific JDBCException.
 class JDBCConnectionException
          Implementation of JDBCException indicating problems with communicating with the database (can also include incorrect JDBC setup).
 class LockAcquisitionException
          Implementation of JDBCException indicating a problem acquiring lock on the database.
 class SQLGrammarException
          Implementation of JDBCException indicating that the SQL sent to the database server was invalid (syntax error, invalid object references, etc).
 

Methods in org.hibernate.exception that return JDBCException
 JDBCException SQLStateConverter.convert(SQLException sqlException, String message, String sql)
          Convert the given SQLException into Hibernate's JDBCException hierarchy.
protected  JDBCException SQLStateConverter.handledNonSpecificException(SQLException sqlException, String message, String sql)
          Handle an exception not converted to a specific type based on the SQLState.
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.
 JDBCException SQLExceptionConverter.convert(SQLException sqlException, String message, String sql)
          Convert the given SQLException into Hibernate's JDBCException hierarchy.
 

Uses of JDBCException in org.hibernate.impl
 

Methods in org.hibernate.impl that throw JDBCException
 void IteratorImpl.close()