You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/05/31 17:05:53 UTC

svn commit: r410556 - /incubator/harmony/enhanced/classlib/trunk/modules/archive/src/main/java/java/util/jar/JarException.java

Author: tellison
Date: Wed May 31 08:05:53 2006
New Revision: 410556

URL: http://svn.apache.org/viewvc?rev=410556&view=rev
Log:
Add constant SUID and minor reformatting

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/archive/src/main/java/java/util/jar/JarException.java

Modified: incubator/harmony/enhanced/classlib/trunk/modules/archive/src/main/java/java/util/jar/JarException.java
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/archive/src/main/java/java/util/jar/JarException.java?rev=410556&r1=410555&r2=410556&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/archive/src/main/java/java/util/jar/JarException.java (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/archive/src/main/java/java/util/jar/JarException.java Wed May 31 08:05:53 2006
@@ -15,31 +15,31 @@
 
 package java.util.jar;
 
-
 import java.util.zip.ZipException;
 
 /**
  * This runtime exception is thrown when a problem occurrs while reading a JAR
  * file.
- * 
  */
 public class JarException extends ZipException {
 
-	/**
-	 * Constructs a new instance of this class with its walkback filled in.
-	 */
-	public JarException() {
-		super();
-	}
+    private static final long serialVersionUID = 7159778400963954473L;
+
+    /**
+     * Constructs a new instance of this class with its walkback filled in.
+     */
+    public JarException() {
+        super();
+    }
 
-	/**
-	 * Constructs a new instance of this class with its walkback and message
-	 * filled in.
-	 * 
-	 * @param detailMessage
-	 *            String The detail message for the exception.
-	 */
-	public JarException(String detailMessage) {
-		super(detailMessage);
-	}
+    /**
+     * Constructs a new instance of this class with its walkback and message
+     * filled in.
+     * 
+     * @param detailMessage
+     *            String The detail message for the exception.
+     */
+    public JarException(String detailMessage) {
+        super(detailMessage);
+    }
 }