Source Home >> Java Source 1.6.0 >> java.util.zip.ZipError V 0.09
  • 01/*
  • 02 * @(#)ZipError.java 1.1 06/07/31
  • 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
  • 10/**
  • 11 * Signals that an unrecoverable error has occurred.
  • 12 *
  • 13 * @author Dave Bristor
  • 14 * @version 1.1, 07/31/06
  • 15 * @since 1.6
  • 16 */
  • 17public class ZipError extends InternalError {
  • 18 private static final long serialVersionUID = 853973422266861979L;
  • 19
  • 20 /**
  • 21 * Constructs a ZipError with the given detail message.
  • 22 * @param s the {@code String} containing a detail message
  • 23 */
  • 24 public ZipError(String s) {
  • 25 super(s);
  • 26 }
  • 27}

文件:ZipError.java
包名:java.util.zip
类名:ZipError
继承:InternalError
接口: