KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > tree > SplitRequiredException


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: SplitRequiredException.java,v 1.5 2006/10/30 21:14:26 bostic Exp $
7  */

8
9 package com.sleepycat.je.tree;
10
11 /**
12  * Indicates that we need to return to the top of the tree in order to
13  * do a forced splitting pass.
14  */

15 class SplitRequiredException extends Exception JavaDoc {
16     public SplitRequiredException(){
17     }
18 }
19
Popular Tags