• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/java/src/com/sleepycat/db/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 1997-2009 Oracle.  All rights reserved.
5 *
6 * $Id$
7 */
8package com.sleepycat.db;
9
10import com.sleepycat.db.internal.DbEnv;
11
12/**
13Thrown if a master lease has expired.
14*/
15public class ReplicationLeaseExpiredException extends DatabaseException {
16    /* package */ ReplicationLeaseExpiredException(final String s,
17                                   final int errno,
18                                   final DbEnv dbenv) {
19        super(s, errno, dbenv);
20    }
21}
22