• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 1999,2008 Oracle.  All rights reserved.
5 *
6 * $Id: DeadlockException.java,v 12.8 2008/01/17 05:04:53 mjc Exp $
7 */
8package com.sleepycat.db;
9
10import com.sleepycat.db.internal.DbEnv;
11
12/**
13DeadlockException is thrown to a thread of control when multiple threads
14competing for a lock are
15deadlocked, when a lock request has timed out
16or when a lock request would need to block and the transaction has been
17configured to not wait for locks.
18*/
19public class DeadlockException extends DatabaseException {
20    /* package */ DeadlockException(final String s,
21                                final int errno,
22                                final DbEnv dbenv) {
23        super(s, errno, dbenv);
24    }
25}
26