• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 1997,2008 Oracle.  All rights reserved.
5 *
6 * $Id: RunRecoveryException.java,v 12.8 2008/01/17 05:04:53 mjc Exp $
7 */
8package com.sleepycat.db;
9
10import com.sleepycat.db.internal.DbEnv;
11
12/**
13Thrown when the database environment needs to be recovered.
14 *
15Errors can occur in where the only solution is to shut down the
16application and run recovery.  When a fatal error occurs, this
17exception will be thrown, and all subsequent calls will also fail in
18the same way.  When this occurs, recovery should be performed.
19*/
20public class RunRecoveryException extends DatabaseException {
21    /* package */ RunRecoveryException(final String s,
22                                   final int errno,
23                                   final DbEnv dbenv) {
24        super(s, errno, dbenv);
25    }
26}
27