The Answer to Life, the Universe, and Everything

Monday, November 13, 2006

HibernateException


package org.hibernate;

import 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
*/

public class HibernateException extends NestableRuntimeException {

public HibernateException(Throwable root) {
super(root);
}

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

public HibernateException(String s) {
super(s);
}
}

No comments: