summaryrefslogtreecommitdiff
path: root/libjava/java/util/jar/JarException.java
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2000-11-18 02:00:06 +0000
committerMark Wielaard <mark@gcc.gnu.org>2000-11-18 02:00:06 +0000
commitc5f651bf3ff1ec27c25ebdcd14d55bc125c020a4 (patch)
tree1cdd2c04005f269ae818823da99af56069055ae4 /libjava/java/util/jar/JarException.java
parentc003f37865e09e796e26de62b6eb9c1dfa03e632 (diff)
backport: *.java: Reformat all to unofficial standard coding style.
Merge with Classpath (changes by Bryce McKinlay) * java/util/jar/*.java: Reformat all to unofficial standard coding style. No changes of substance. From-SVN: r37538
Diffstat (limited to 'libjava/java/util/jar/JarException.java')
-rw-r--r--libjava/java/util/jar/JarException.java42
1 files changed, 22 insertions, 20 deletions
diff --git a/libjava/java/util/jar/JarException.java b/libjava/java/util/jar/JarException.java
index 827f9e2a904..2b73c054628 100644
--- a/libjava/java/util/jar/JarException.java
+++ b/libjava/java/util/jar/JarException.java
@@ -39,27 +39,29 @@ import java.util.zip.ZipException;
* @since 1.2
* @author Mark Wielaard (mark@klomp.org)
*/
-
-public class JarException extends ZipException {
- // Constructors
+public class JarException extends ZipException
+{
+ // Constructors
- /**
- * Create a new JarException without a descriptive error message.
- */
- public JarException() {
- super();
- }
+ /**
+ * 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
- */
- public JarException(String message) {
- super(message);
- }
+ /**
+ * 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
+ */
+ public JarException(String message)
+ {
+ super(message);
+ }
}