summaryrefslogtreecommitdiff
path: root/gnu/java/security/der/DEREncodingException.java
diff options
context:
space:
mode:
authorPaul Fisher <rao@gnu.org>2000-03-17 00:25:38 +0000
committerPaul Fisher <rao@gnu.org>2000-03-17 00:25:38 +0000
commitf1ba39f5e0f310d63b354aa6716d6e2e4c4fffb9 (patch)
tree9be9c1908d4b571d0a6e54e399cbbc75723daf81 /gnu/java/security/der/DEREncodingException.java
parentd27e26052f33a4c3784183c130975a83fd01905e (diff)
downloadclasspath-f1ba39f5e0f310d63b354aa6716d6e2e4c4fffb9.tar.gz
Change licensing terms to libgcc-like.
Change DOS EOLs to Unix EOLs.
Diffstat (limited to 'gnu/java/security/der/DEREncodingException.java')
-rw-r--r--gnu/java/security/der/DEREncodingException.java76
1 files changed, 42 insertions, 34 deletions
diff --git a/gnu/java/security/der/DEREncodingException.java b/gnu/java/security/der/DEREncodingException.java
index ef3ed464a..197a84962 100644
--- a/gnu/java/security/der/DEREncodingException.java
+++ b/gnu/java/security/der/DEREncodingException.java
@@ -1,34 +1,42 @@
-/* DEREncodingException.java --- DER Encoding Exception
-
- Copyright (c) 1999 by Free Software Foundation, Inc.
- Written by Mark Benvenuto <ivymccough@worldnet.att.net>
-
- 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 gnu.java.security.der;
-
-public class DEREncodingException extends Exception
-{
-
-public DEREncodingException()
-{
- super();
-}
-
-public DEREncodingException(String msg)
-{
- super(msg);
-}
-
-}
+/* DEREncodingException.java --- DER Encoding Exception
+ Copyright (C) 1999 Free Software Foundation, Inc.
+
+This file is part of GNU Classpath.
+
+GNU Classpath is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU Classpath 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 GNU Classpath; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
+
+As a special exception, if you link this library with other files to
+produce an executable, this library does not by itself cause the
+resulting executable to be covered by the GNU General Public License.
+This exception does not however invalidate any other reasons why the
+executable file might be covered by the GNU General Public License. */
+
+
+package gnu.java.security.der;
+
+public class DEREncodingException extends Exception
+{
+
+ public DEREncodingException()
+ {
+ super ();
+ }
+
+ public DEREncodingException (String msg)
+ {
+ super (msg);
+ }
+}