diff options
Diffstat (limited to 'java/lang/IndexOutOfBoundsException.java')
| -rw-r--r-- | java/lang/IndexOutOfBoundsException.java | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/java/lang/IndexOutOfBoundsException.java b/java/lang/IndexOutOfBoundsException.java index 673dbe5d6..8ad884403 100644 --- a/java/lang/IndexOutOfBoundsException.java +++ b/java/lang/IndexOutOfBoundsException.java @@ -1,7 +1,7 @@ /* IndexOutOfBoundsException.java -- exception thrown when attempting to access an index which is out of bounds on objects like String, Array, or Vector. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -29,6 +29,12 @@ executable file might be covered by the GNU General Public License. */ package java.lang; +/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3 + * "The Java Language Specification", ISBN 0-201-63451-1 + * plus online API docs for JDK 1.2 beta from http://www.javasoft.com. + * Status: Believed complete and correct. + */ + /** * Exceptions may be thrown by one part of a Java program and caught * by another in order to deal with exceptional conditions. @@ -41,6 +47,8 @@ package java.lang; * @since JDK 1.0 * * @author Brian Jones + * @author Warren Levy <warrenl@cygnus.com> + * @date September 18, 1998. */ public class IndexOutOfBoundsException extends RuntimeException { |
