00001 /*- 00002 * See the file LICENSE for redistribution information. 00003 * 00004 * Copyright (c) 1997-2005 00005 * Sleepycat Software. All rights reserved. 00006 * 00007 * $Id: ReplicationLockoutException.java,v 12.1 2005/10/25 08:51:14 mjc Exp $ 00008 */ 00009 package com.sleepycat.db; 00010 00011 import com.sleepycat.db.internal.DbEnv; 00012 00013 public class ReplicationLockoutException extends DatabaseException { 00014 protected ReplicationLockoutException(final String s, 00015 final int errno, 00016 final DbEnv dbenv) { 00017 super(s, errno, dbenv); 00018 } 00019 }