00001 /*- 00002 * See the file LICENSE for redistribution information. 00003 * 00004 * Copyright (c) 2000-2005 00005 * Sleepycat Software. All rights reserved. 00006 * 00007 * $Id: KeyRangeException.java,v 12.1 2005/01/31 19:27:32 mark Exp $ 00008 */ 00009 00010 package com.sleepycat.collections; 00011 00017 class KeyRangeException extends IllegalArgumentException { 00018 00022 public KeyRangeException(String msg) { 00023 00024 super(msg); 00025 } 00026 }