| ZipError.java |
1 /*
2 * %W% %E%
3 *
4 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
5 * ORACLE 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 %I%, %G%
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