From c5f651bf3ff1ec27c25ebdcd14d55bc125c020a4 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Sat, 18 Nov 2000 02:00:06 +0000 Subject: 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 --- libjava/java/util/jar/JarException.java | 42 +++++++++++++++++---------------- 1 file changed, 22 insertions(+), 20 deletions(-) (limited to 'libjava/java/util/jar/JarException.java') 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 - * getMessage() 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 + * getMessage() method. + * @see java.lang.Throwable@getMessage() + * + * @param message The descriptive error message + */ + public JarException(String message) + { + super(message); + } } -- cgit v1.2.3