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 exceptions15 */16 public class NoRootException extends RecoveryException {17 18 public NoRootException(EnvironmentImpl env,19 String message) {20 super(env, message);21 }22 }23