• 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: ReplicationLeaseExpiredException.java,v 12.3 2008/01/17 05:04:53 mjc Exp $
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