📄 zipexception.java
字号:
/* * @(#)ZipException.java 1.15 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.util.zip;import java.io.IOException;/** * Signals that a Zip exception of some sort has occurred. * * @author unascribed * @version 1.15 01/23/03 * @see java.io.IOException * @since JDK1.0 */publicclass ZipException extends IOException { /** * Constructs an <code>ZipException</code> with <code>null</code> * as its error detail message. */ public ZipException() { super(); } /** * Constructs an <code>ZipException</code> with the specified detail * message. * * @param s the detail message. */ public ZipException(String s) { super(s); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -