summaryrefslogtreecommitdiff
path: root/libjava/java/util/jar/JarException.java
diff options
context:
space:
mode:
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);
+ }
}