• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/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: VersionMismatchException.java,v 1.9 2008/01/17 05:04:53 mjc Exp $
7 */
8package com.sleepycat.db;
9
10import com.sleepycat.db.internal.DbEnv;
11
12/**
13Thrown if the version of the Berkeley DB library doesn't match the version that created
14the database environment.
15*/
16public class VersionMismatchException extends DatabaseException {
17    /* package */ VersionMismatchException(final String s,
18                                   final int errno,
19                                   final DbEnv dbenv) {
20        super(s, errno, dbenv);
21    }
22}
23