summaryrefslogtreecommitdiff
path: root/java/lang/IndexOutOfBoundsException.java
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2001-03-11 15:52:38 +0000
committerMark Wielaard <mark@klomp.org>2001-03-11 15:52:38 +0000
commit09404eee080f7245cbdbadd78c34ea8c21fa93d1 (patch)
tree03d9db7ddb3c951b0cc549b961effb3fbe3a9e00 /java/lang/IndexOutOfBoundsException.java
parent1c5ef970b4601cd5336fc60fcc0db253a8e11a69 (diff)
downloadclasspath-09404eee080f7245cbdbadd78c34ea8c21fa93d1.tar.gz
Merge all Error and Exception classes with libgcj.
Diffstat (limited to 'java/lang/IndexOutOfBoundsException.java')
-rw-r--r--java/lang/IndexOutOfBoundsException.java10
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
{