FileDocCategorySizeDatePackage
HibernateException.javaAPI DocHibernate 3.2.5652Fri Feb 11 20:09:22 GMT 2005org.hibernate

HibernateException

public class HibernateException extends org.hibernate.exception.NestableRuntimeException
Any exception that occurs inside the persistence layer or JDBC driver. SQLExceptions are always wrapped by instances of JDBCException.
see
JDBCException
author
Gavin King

Fields Summary
Constructors Summary
public HibernateException(Throwable root)

		super(root);
	
public HibernateException(String string, Throwable root)

		super(string, root);
	
public HibernateException(String s)

		super(s);
	
Methods Summary