📄 jarexception.java
字号:
/* * @(#)JarException.java 1.11 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package java.util.jar;/** * Signals that an error of some sort has occurred while reading from * or writing to a JAR file. * * @author David Connelly * @version 1.11, 01/23/03 * @since 1.2 */publicclass JarException extends java.util.zip.ZipException { /** * Constructs a JarException with no detail message. */ public JarException() { } /** * Constructs a JarException with the specified detail message. * @param s the detail message */ public JarException(String s) { super(s); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -