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
public class FzipException extends IOException
FastZIP format exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FzipException(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 Detail
-
FzipException
public FzipException(String message)
Constructs a new exception.- Parameters:
message
- the message, may benull
-
FzipException
public FzipException(IOException cause)
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
-
-