![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.exception.LockAcquisitionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
// $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