All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.HibernateException Maven / Gradle / Ivy

//$Id: HibernateException.java 5683 2005-02-12 03:09:22Z oneovthafew $
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);
	}
}










© 2015 - 2025 Weber Informatics LLC | Privacy Policy