/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997,2007 Oracle. All rights reserved. * * $Id: RunRecoveryException.java,v 12.6 2007/05/17 15:15:41 bostic Exp $ */ package com.sleepycat.db; import com.sleepycat.db.internal.DbEnv; public class RunRecoveryException extends DatabaseException { /* package */ RunRecoveryException(final String s, final int errno, final DbEnv dbenv) { super(s, errno, dbenv); } }