- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.util.zip.ZipException
-
- All Implemented Interfaces:
-
Serializable
- 已知直接子类:
-
JarException
public class ZipException extends IOException
表示发生了某种类型的Zip异常。- 从以下版本开始:
- 1.1
- 另请参见:
-
IOException
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 ZipException()
构造一个ZipException
与null
作为错误详细信息。ZipException(String s)
构造具有指定详细消息的ZipException
。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
ZipException
public ZipException()
构造一个ZipException
与null
作为其错误详细消息。
-
ZipException
public ZipException(String s)
构造具有指定详细消息的ZipException
。- 参数
-
s
- 详细信息。
-
-