~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/exception/LockAcquisitionException.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// $Id: LockAcquisitionException.java 4782 2004-11-21 00:11:27Z pgmjsd $
 
2
package org.hibernate.exception;
 
3
 
 
4
import org.hibernate.JDBCException;
 
5
 
 
6
import java.sql.SQLException;
 
7
 
 
8
/**
 
9
 * Implementation of JDBCException indicating a problem acquiring lock
 
10
 * on the database.
 
11
 *
 
12
 * @author Steve Ebersole
 
13
 */
 
14
public class LockAcquisitionException extends JDBCException {
 
15
        public LockAcquisitionException(String string, SQLException root) {
 
16
                super( string, root );
 
17
        }
 
18
 
 
19
        public LockAcquisitionException(String string, SQLException root, String sql) {
 
20
                super( string, root, sql );
 
21
        }
 
22
}