Package com.e1c.g5.v8.fastzip
Class FzipException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.e1c.g5.v8.fastzip.FzipException
- All Implemented Interfaces:
Serializable
FastZIP format exception.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFzipException
(IOException cause) Constructs a new exception, wrapping anIOException
.FzipException
(String message) Constructs a new exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FzipException
Constructs a new exception.- Parameters:
message
- the message, may benull
-
FzipException
Constructs a new exception, wrapping anIOException
.FzipException
represents format failures, thus onlyZipException
andEOFException
shall usually be wrapped intoFzipException
.- Parameters:
cause
- the source IOException, cannot benull
-