1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 1997,2008 Oracle.  All rights reserved.
5 *
6 * $Id: ReplicationLeaseTimeoutException.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 timed out.
14*/
15public class ReplicationLeaseTimeoutException extends DatabaseException {
16    /* package */ ReplicationLeaseTimeoutException(final String s,
17                                   final int errno,
18                                   final DbEnv dbenv) {
19        super(s, errno, dbenv);
20    }
21}
22