diff options
| author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-18 15:40:16 +0000 |
|---|---|---|
| committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-18 15:40:16 +0000 |
| commit | 0662d7053a08078b08d9cca058714f14f3f2fbcd (patch) | |
| tree | 6b8dcd38b7dbb7c4c618080eb1958b6f042d581c /libjava/java/util/jar/JarException.java | |
| parent | 23266d1bf15afc4361ed8af5eeee636790929b35 (diff) | |
| download | gcc-0662d7053a08078b08d9cca058714f14f3f2fbcd.tar.gz | |
* gcj/javaprims.h: Updated class declaration list.
* Makefile.in: Rebuilt.
* Makefile.am (core_java_source_files): Added
PropertyPermissionCollection.java.
* java/lang/Thread.java (group, name): Now package-private.
* java/lang/ThreadGroup.java: Re-merge with Classpath.
* java/util/AbstractList.java: Likewise.
* java/util/AbstractMap.java: Likewise.
* java/util/Calendar.java: Likewise.
* java/util/Collections.java: Likewise.
* java/util/HashMap.java: Likewise.
* java/util/Hashtable.java: Likewise.
* java/util/LinkedHashMap.java: Likewise.
* java/util/LinkedList.java: Likewise.
* java/util/List.java: Likewise.
* java/util/ListResourceBundle.java: Likewise.
* java/util/Map.java: Likewise.
* java/util/Observable.java: Likewise.
* java/util/Properties.java: Likewise.
* java/util/PropertyPermission.java: Likewise.
* java/util/PropertyPermissionCollection.java: Likewise.
* java/util/PropertyResourceBundle.java: Likewise.
* java/util/Random.java: Likewise.
* java/util/SimpleTimeZone.java: Likewise.
* java/util/StringTokenizer.java: Likewise.
* java/util/TimerTask.java: Likewise.
* java/util/TreeMap.java: Likewise.
* java/util/WeakHashMap.java: Likewise.
* java/util/jar/Attributes.java: Likewise.
* java/util/jar/JarException.java: Likewise.
* java/util/jar/Manifest.java: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54743 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/jar/JarException.java')
| -rw-r--r-- | libjava/java/util/jar/JarException.java | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/libjava/java/util/jar/JarException.java b/libjava/java/util/jar/JarException.java index c8c0fba3717..54291c687d5 100644 --- a/libjava/java/util/jar/JarException.java +++ b/libjava/java/util/jar/JarException.java @@ -1,5 +1,5 @@ -/* Attributes.java -- exception thrown to indicate an problem with a jar file - Copyright (C) 2000 Free Software Foundation, Inc. +/* JarException.java -- thrown to indicate an problem with a jar file + Copyright (C) 2000, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,35 +41,34 @@ import java.util.zip.ZipException; /** * This exception is thrown to indicate an problem with a jar file. - * It can be constructed with or without a descriptive message of the problem. - * <p> * Note that none of the methods in the java.util.jar package actually declare * to throw this exception, most just declare that they throw an IOException * which is super class of JarException. - * - * @since 1.2 + * * @author Mark Wielaard (mark@klomp.org) + * @since 1.2 */ - public class JarException extends ZipException { - // Constructors + /** + * Compatible with JDK 1.2+. + */ + private static final long serialVersionUID = 7159778400963954473L; /** * Create a new JarException without a descriptive error message. */ public JarException() { - super(); } /** * Create a new JarException with a descriptive error message indicating * what went wrong. This message can later be retrieved by calling the * <code>getMessage()</code> method. - * @see java.lang.Throwable@getMessage() * * @param message The descriptive error message + * @see #getMessage() */ public JarException(String message) { |
