1 /*- 2 * See the file LICENSE for redistribution information. 3 * 4 * Copyright (c) 2002,2006 Oracle. All rights reserved. 5 * 6 * $Id: CursorsExistException.java,v 1.6 2006/10/30 21:14:25 bostic Exp $ 7 */ 8 9 package com.sleepycat.je.tree; 10 11 12 /** 13 * Error to indicate that a bottom level BIN has cursors on it during a 14 * delete subtree operation. 15 */ 16 public class CursorsExistException extends Exception { 17 18 /* 19 * Throw this static instance, in order to reduce the cost of 20 * fill in the stack trace. 21 */ 22 public static final CursorsExistException CURSORS_EXIST = 23 new CursorsExistException(); 24 25 private CursorsExistException() { 26 } 27 } 28