1 /* 2 * @(#)ZipError.java 1.1 06/07/31 3 * 4 * Copyright 2006 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 /** 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 */ 17 public 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 } 28