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

org.hibernate.exception.LockAcquisitionException Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
// $Id: LockAcquisitionException.java 4782 2004-11-21 00:11:27Z pgmjsd $
package org.hibernate.exception;

import org.hibernate.JDBCException;

import java.sql.SQLException;

/**
 * Implementation of JDBCException indicating a problem acquiring lock
 * on the database.
 *
 * @author Steve Ebersole
 */
public class LockAcquisitionException extends JDBCException {
	public LockAcquisitionException(String string, SQLException root) {
		super( string, root );
	}

	public LockAcquisitionException(String string, SQLException root, String sql) {
		super( string, root, sql );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy