summaryrefslogtreecommitdiff
path: root/java/lang/IndexOutOfBoundsException.java
diff options
context:
space:
mode:
authorBrian Jones <cbj@gnu.org>1998-10-30 04:29:16 +0000
committerBrian Jones <cbj@gnu.org>1998-10-30 04:29:16 +0000
commit0f609bac8b6fc5e0cc4a388787ca7b38c34af8bc (patch)
tree740634c806600ce63562e2b76da30819337c1fad /java/lang/IndexOutOfBoundsException.java
parent4a056944a0970f61d2fe61e3eecf2403352e8dff (diff)
downloadclasspath-0f609bac8b6fc5e0cc4a388787ca7b38c34af8bc.tar.gz
added copyright notice
Diffstat (limited to 'java/lang/IndexOutOfBoundsException.java')
-rw-r--r--java/lang/IndexOutOfBoundsException.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/java/lang/IndexOutOfBoundsException.java b/java/lang/IndexOutOfBoundsException.java
index 42e4c1ff6..f86e9fdd2 100644
--- a/java/lang/IndexOutOfBoundsException.java
+++ b/java/lang/IndexOutOfBoundsException.java
@@ -1,3 +1,24 @@
+/*************************************************************************
+/* 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 by Free Software Foundation, Inc.
+/*
+/* This program is free software; you can redistribute it and/or modify
+/* it under the terms of the GNU Library General Public License as published
+/* by the Free Software Foundation, version 2. (see COPYING.LIB)
+/*
+/* This program is distributed in the hope that it will be useful, but
+/* WITHOUT ANY WARRANTY; without even the implied warranty of
+/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+/* GNU General Public License for more details.
+/*
+/* You should have received a copy of the GNU General Public License
+/* along with this program; if not, write to the Free Software Foundation
+/* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA
+/*************************************************************************/
+
package java.lang;
/**