KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > latch > LatchNotHeldException


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

8
9 package com.sleepycat.je.latch;
10
11 /**
12  * An exception that is thrown when a latch is not held but a method is invoked
13  * on it that assumes it is held.
14  */

15 public class LatchNotHeldException extends LatchException {
16     public LatchNotHeldException() {
17     super();
18     }
19
20     public LatchNotHeldException(String JavaDoc message) {
21     super(message);
22     }
23 }
24
Popular Tags