KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > collections > KeyRangeException


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2000-2005
5  * Sleepycat Software. All rights reserved.
6  *
7  * $Id: KeyRangeException.java,v 1.14 2004/12/22 14:11:27 linda Exp $
8  */

9
10 package com.sleepycat.collections;
11
12 /**
13  * An exception thrown when a key is out of range.
14  *
15  * @author Mark Hayes
16  */

17 class KeyRangeException extends IllegalArgumentException {
18
19     /**
20      * Creates a key range exception.
21      */

22     public KeyRangeException(String msg) {
23
24         super(msg);
25     }
26 }
27
Popular Tags