- /*
- * @(#)JarException.java 1.9 00/02/02
- *
- * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- package java.util.jar;
-
- /**
- * Signals that an error of some sort has occurred while reading from
- * or writing to a JAR file.
- *
- * @author David Connelly
- * @version 1.9, 02/02/00
- * @since 1.2
- */
- public
- class JarException extends java.util.zip.ZipException {
- /**
- * Constructs a JarException with no detail message.
- */
- public JarException() {
- }
-
- /**
- * Constructs a JarException with the specified detail message.
- * @param s the detail message
- */
- public JarException(String s) {
- super(s);
- }
- }