KickJava   Java API By Example, From Geeks To Geeks.

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


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

8
9 package com.sleepycat.je.tree;
10
11 import com.sleepycat.je.DatabaseException;
12
13 /**
14  * Error to indicate that something is out of wack in the tree.
15  */

16 public class InconsistentNodeException extends DatabaseException {
17     public InconsistentNodeException() {
18     super();
19     }
20
21     public InconsistentNodeException(String JavaDoc message) {
22     super(message);
23     }
24 }
25
Popular Tags