1 /*2 * @(#)ZipException.java 1.16 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package java.util.zip;9 10 import java.io.IOException ;11 12 /**13 * Signals that a Zip exception of some sort has occurred.14 *15 * @author unascribed16 * @version 1.16 12/19/0317 * @see java.io.IOException18 * @since JDK1.019 */20 21 public22 class ZipException extends IOException {23 /**24 * Constructs an <code>ZipException</code> with <code>null</code> 25 * as its error detail message. 26 */27 public ZipException() {28 super();29 }30 31 /**32 * Constructs an <code>ZipException</code> with the specified detail 33 * message.34 *35 * @param s the detail message.36 */37 38 public ZipException(String s) {39 super(s);40 }41 }42