/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000,2007 Oracle. All rights reserved. * * $Id: KeyRangeException.java,v 1.4 2007/05/04 00:28:27 mark Exp $ */ package com.sleepycat.util.keyrange; /** * An exception thrown when a key is out of range. * * @author Mark Hayes */ public class KeyRangeException extends IllegalArgumentException { /** * Creates a key range exception. */ public KeyRangeException(String msg) { super(msg); } }