Class ArchiveException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.compress.archivers.ArchiveException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
StreamingNotSupportedException
public class ArchiveException extends java.lang.Exception
Archiver related Exception- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ArchiveException(java.lang.String message)
Constructs a new exception with the specified detail message.ArchiveException(java.lang.String message, java.lang.Exception cause)
Constructs a new exception with the specified detail message and cause.
-
-
-
Constructor Detail
-
ArchiveException
public ArchiveException(java.lang.String message)
Constructs a new exception with the specified detail message. The cause is not initialized.- Parameters:
message
- the detail message
-
ArchiveException
public ArchiveException(java.lang.String message, java.lang.Exception cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
-