KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > recovery > NoRootException


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: NoRootException.java,v 1.1 2006/11/27 18:38:26 linda Exp $
7  */

8
9 package com.sleepycat.je.recovery;
10
11 import com.sleepycat.je.dbi.EnvironmentImpl;
12
13 /**
14  * Recovery related exceptions
15  */

16 public class NoRootException extends RecoveryException {
17
18     public NoRootException(EnvironmentImpl env,
19                            String JavaDoc message) {
20     super(env, message);
21     }
22 }
23
Popular Tags