You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
654 B
45 lines
654 B
/*
|
|
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.util.zip;
|
|
|
|
/**
|
|
* Signals that an unrecoverable error has occurred.
|
|
*
|
|
* @author Dave Bristor
|
|
* @since 1.6
|
|
*/
|
|
public class ZipError extends InternalError {
|
|
private static final long serialVersionUID = 853973422266861979L;
|
|
|
|
/**
|
|
* Constructs a ZipError with the given detail message.
|
|
* @param s the {@code String} containing a detail message
|
|
*/
|
|
public ZipError(String s) {
|
|
super(s);
|
|
}
|
|
}
|