emul/mini/src/main/java/java/lang/ArrayIndexOutOfBoundsException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Jan 2013 08:47:05 +0100
changeset 592 5e13b1ac2886
parent 66 8a74b5d8d1d4
permissions -rw-r--r--
In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
jaroslav@66
     1
/*
jaroslav@66
     2
 * Copyright (c) 1994, 2008, Oracle and/or its affiliates. All rights reserved.
jaroslav@66
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@66
     4
 *
jaroslav@66
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@66
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@66
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@66
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@66
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@66
    10
 *
jaroslav@66
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@66
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@66
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@66
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@66
    15
 * accompanied this code).
jaroslav@66
    16
 *
jaroslav@66
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@66
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@66
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@66
    20
 *
jaroslav@66
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@66
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@66
    23
 * questions.
jaroslav@66
    24
 */
jaroslav@66
    25
jaroslav@66
    26
package java.lang;
jaroslav@66
    27
jaroslav@66
    28
/**
jaroslav@66
    29
 * Thrown to indicate that an array has been accessed with an
jaroslav@66
    30
 * illegal index. The index is either negative or greater than or
jaroslav@66
    31
 * equal to the size of the array.
jaroslav@66
    32
 *
jaroslav@66
    33
 * @author  unascribed
jaroslav@66
    34
 * @since   JDK1.0
jaroslav@66
    35
 */
jaroslav@66
    36
public
jaroslav@66
    37
class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
jaroslav@66
    38
    private static final long serialVersionUID = -5116101128118950844L;
jaroslav@66
    39
jaroslav@66
    40
    /**
jaroslav@66
    41
     * Constructs an <code>ArrayIndexOutOfBoundsException</code> with no
jaroslav@66
    42
     * detail message.
jaroslav@66
    43
     */
jaroslav@66
    44
    public ArrayIndexOutOfBoundsException() {
jaroslav@66
    45
        super();
jaroslav@66
    46
    }
jaroslav@66
    47
jaroslav@66
    48
    /**
jaroslav@66
    49
     * Constructs a new <code>ArrayIndexOutOfBoundsException</code>
jaroslav@66
    50
     * class with an argument indicating the illegal index.
jaroslav@66
    51
     *
jaroslav@66
    52
     * @param   index   the illegal index.
jaroslav@66
    53
     */
jaroslav@66
    54
    public ArrayIndexOutOfBoundsException(int index) {
jaroslav@66
    55
        super("Array index out of range: " + index);
jaroslav@66
    56
    }
jaroslav@66
    57
jaroslav@66
    58
    /**
jaroslav@66
    59
     * Constructs an <code>ArrayIndexOutOfBoundsException</code> class
jaroslav@66
    60
     * with the specified detail message.
jaroslav@66
    61
     *
jaroslav@66
    62
     * @param   s   the detail message.
jaroslav@66
    63
     */
jaroslav@66
    64
    public ArrayIndexOutOfBoundsException(String s) {
jaroslav@66
    65
        super(s);
jaroslav@66
    66
    }
jaroslav@66
    67
}