~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/java/src/com/sleepycat/db/DbRunRecoveryException.java

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-
 
2
 * See the file LICENSE for redistribution information.
 
3
 *
 
4
 * Copyright (c) 1997-2001
 
5
 *      Sleepycat Software.  All rights reserved.
 
6
 *
 
7
 * $Id: DbRunRecoveryException.java,v 11.5 2001/05/16 13:09:31 bostic Exp $
 
8
 */
 
9
 
 
10
package com.sleepycat.db;
 
11
 
 
12
/**
 
13
 *
 
14
 * @author Donald D. Anderson
 
15
 */
 
16
public class DbRunRecoveryException extends DbException
 
17
{
 
18
    // methods
 
19
    //
 
20
 
 
21
    public DbRunRecoveryException(String s)
 
22
    {
 
23
        super(s);
 
24
    }
 
25
 
 
26
    public DbRunRecoveryException(String s, int errno)
 
27
    {
 
28
        super(s, errno);
 
29
    }
 
30
}
 
31
 
 
32
// end of DbRunRecoveryException.java