1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2000,2008 Oracle.  All rights reserved.
5 *
6 * $Id: KeyRangeException.java,v 1.5 2008/01/08 20:58:39 bostic Exp $
7 */
8
9package com.sleepycat.util.keyrange;
10
11/**
12 * An exception thrown when a key is out of range.
13 *
14 * @author Mark Hayes
15 */
16public class KeyRangeException extends IllegalArgumentException {
17
18    /**
19     * Creates a key range exception.
20     */
21    public KeyRangeException(String msg) {
22
23        super(msg);
24    }
25}
26