KickJava   Java API By Example, From Geeks To Geeks.

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


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

8
9 package com.sleepycat.je.latch;
10
11 import com.sleepycat.je.DatabaseException;
12
13 /**
14  * The root of latch related exceptions.
15  */

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