01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2002,2008 Oracle. All rights reserved.
05: *
06: * $Id: DuplicateEntryException.java,v 1.13.2.2 2008/01/07 15:14:16 cwl Exp $
07: */
08:
09: package com.sleepycat.je.tree;
10:
11: import com.sleepycat.je.DatabaseException;
12:
13: /**
14: * Exception to indicate that an entry is already present in a node.
15: */
16: public class DuplicateEntryException extends DatabaseException {
17: public DuplicateEntryException() {
18: super ();
19: }
20:
21: public DuplicateEntryException(String message) {
22: super(message);
23: }
24: }
|