Class ArchiveException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.compress.archivers.ArchiveException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
StreamingNotSupportedException
Archiver related Exception.
- See Also:
-
Constructor Summary
ConstructorDescriptionArchiveException
(String message) Constructs a new exception with the specified detail message.ArchiveException
(String message, Exception cause) Constructs a new exception with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ArchiveException
Constructs a new exception with the specified detail message. The cause is not initialized.- Parameters:
message
- the detail message.
-
ArchiveException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause.
-