Source Home >> Java Source 1.6.0 >> java.util.zip.ZipException V 0.09
  • 01/*
  • 02 * @(#)ZipException.java 1.17 05/11/17
  • 03 *
  • 04 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
  • 05 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  • 06 */
  • 07
  • 08package java.util.zip;
  • 09
  • 10import java.io.IOException;
  • 11
  • 12/**
  • 13 * Signals that a Zip exception of some sort has occurred.
  • 14 *
  • 15 * @author unascribed
  • 16 * @version 1.17 11/17/05
  • 17 * @see java.io.IOException
  • 18 * @since JDK1.0
  • 19 */
  • 20
  • 21public
  • 22class 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}

文件:ZipException.java
包名:java.util.zip
类名:ZipException
继承:IOException
接口: