KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > util > keyrange > KeyRangeException


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

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

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

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