home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-20 | 1.0 KB | 41 lines |
- /*
- * @(#)JarException.java 1.4 98/03/18
- *
- * Copyright 1997 by Sun Microsystems, Inc.,
- * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
- * All rights reserved.
- *
- * This software is the confidential and proprietary information
- * of Sun Microsystems, Inc. ("Confidential Information"). You
- * shall not disclose such Confidential Information and shall use
- * it only in accordance with the terms of the license agreement
- * you entered into with Sun.
- */
-
- 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.4, 03/18/98
- * @since JDK1.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);
- }
- }
-