KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > txn > LockTimeOutException


1 /*
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002-2005
5 * Sleepycat Software. All rights reserved.
6 *
7 * $Id: LockTimeOutException.java,v 1.8 2004/12/22 14:11:36 linda Exp $
8 */

9
10 package com.sleepycat.je.txn;
11
12 import com.sleepycat.je.DeadlockException;
13
14 /**
15  * A Lock timed out.
16  */

17 public class LockTimeOutException extends DeadlockException {
18
19     public LockTimeOutException() {
20     super();
21     }
22
23     public LockTimeOutException(Throwable t) {
24         super(t);
25     }
26
27     public LockTimeOutException(String message) {
28     super(message);
29     }
30
31     public LockTimeOutException(String message, Throwable t) {
32         super(message, t);
33     }
34 }
35
Popular Tags