KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > DeadlockException


1 /*
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: DeadlockException.java,v 1.13 2006/10/30 21:14:12 bostic Exp $
7  */

8
9 package com.sleepycat.je;
10
11 /**
12  * Javadoc for this public class is generated
13  * via the doc templates in the doc_src directory.
14  */

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