/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997, 1998 * Sleepycat Software. All rights reserved. * * @(#)DbRunRecoveryException.java 1.1 (Sleepycat) 10/4/98 */ package com.sleepycat.db; /** * * @author Donald D. Anderson */ public class DbRunRecoveryException extends DbException { // methods // public DbRunRecoveryException(String s) { super(s); } public DbRunRecoveryException(String s, int errno) { super(s, errno); } } // end of DbRunRecoveryException.java