blob: 309df1e5188f4a68046705398c16da2b72c1bdeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997, 2015 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
package com.sleepycat.db;
import com.sleepycat.db.internal.DbEnv;
/**
Thrown when the database environment needs to be recovered.
*
Errors can occur in where the only solution is to shut down the
application and run recovery. When a fatal error occurs, this
exception will be thrown, and all subsequent calls will also fail in
the same way. When this occurs, recovery should be performed.
*/
public class RunRecoveryException extends DatabaseException {
/* package */ RunRecoveryException(final String s,
final int errno,
final DbEnv dbenv) {
super(s, errno, dbenv);
}
}
|