org.hibernate
Class JDBCException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.hibernate.exception.NestableRuntimeException
                  extended byorg.hibernate.HibernateException
                      extended byorg.hibernate.JDBCException
All Implemented Interfaces:
Nestable, Serializable
Direct Known Subclasses:
ConstraintViolationException, DataException, GenericJDBCException, JDBCConnectionException, LockAcquisitionException, SQLGrammarException

public class JDBCException
extends HibernateException

Wraps an SQLException. Indicates that an exception occurred during a JDBC call.

Author:
Gavin King
See Also:
SQLException, Serialized Form

Field Summary
 
Fields inherited from class org.hibernate.exception.NestableRuntimeException
delegate
 
Constructor Summary
JDBCException(String string, SQLException root)
           
JDBCException(String string, SQLException root, String sql)
           
 
Method Summary
 int getErrorCode()
          Get the errorCode of the underlying SQLException.
 String getSQL()
          Get the actual SQL statement that caused the exception (may be null)
 SQLException getSQLException()
          Get the underlying SQLException.
 String getSQLState()
          Get the SQLState of the underlying SQLException.
 
Methods inherited from class org.hibernate.exception.NestableRuntimeException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JDBCException

public JDBCException(String string,
                     SQLException root)

JDBCException

public JDBCException(String string,
                     SQLException root,
                     String sql)
Method Detail

getSQLState

public String getSQLState()
Get the SQLState of the underlying SQLException.

Returns:
String
See Also:
SQLException

getErrorCode

public int getErrorCode()
Get the errorCode of the underlying SQLException.

Returns:
int the error code
See Also:
SQLException

getSQLException

public SQLException getSQLException()
Get the underlying SQLException.

Returns:
SQLException

getSQL

public String getSQL()
Get the actual SQL statement that caused the exception (may be null)