summaryrefslogtreecommitdiff
path: root/java/lang/IllegalArgumentException.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/IllegalArgumentException.java
parent4a056944a0970f61d2fe61e3eecf2403352e8dff (diff)
downloadclasspath-0f609bac8b6fc5e0cc4a388787ca7b38c34af8bc.tar.gz
added copyright notice
Diffstat (limited to 'java/lang/IllegalArgumentException.java')
-rw-r--r--java/lang/IllegalArgumentException.java21
1 files changed, 20 insertions, 1 deletions
diff --git a/java/lang/IllegalArgumentException.java b/java/lang/IllegalArgumentException.java
index aacbfe84d..a8faddb90 100644
--- a/java/lang/IllegalArgumentException.java
+++ b/java/lang/IllegalArgumentException.java
@@ -1,9 +1,28 @@
+/*************************************************************************
+/* IllegalArgumentException.java -- exception may be thrown when a method
+/* is passed an illegal or inappropriate argument.
+/*
+/* 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;
/**
* Exceptions may be thrown by one part of a Java program and caught
* by another in order to deal with exceptional conditions.
- * When a method is passed and illegal or inappropriate argument
+ * When a method is passed an illegal or inappropriate argument
* this exception may be thrown.
*
* @author Brian Jones