01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2000,2008 Oracle. All rights reserved.
05: *
06: * $Id: KeyRangeException.java,v 1.3.2.2 2008/01/07 15:14:21 cwl Exp $
07: */
08:
09: 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 {
17:
18: /**
19: * Creates a key range exception.
20: */
21: public KeyRangeException(String msg) {
22:
23: super(msg);
24: }
25: }
|