• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/java/src/com/sleepycat/util/keyrange/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2000-2009 Oracle.  All rights reserved.
5 *
6 * $Id$
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    private static final long serialVersionUID = 1048575489L;
19
20    /**
21     * Creates a key range exception.
22     */
23    public KeyRangeException(String msg) {
24
25        super(msg);
26    }
27}
28