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