- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- kala.compress.archivers.ArchiveException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
StreamingNotSupportedException
public class ArchiveException extends java.io.IOExceptionSignals that an Archive exception of some sort has occurred.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDSerial.
-
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.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial.- See Also:
- Constant Field Values
-
-
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 message (which is saved for later retrieval by theThrowable.getMessage()method).
-
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 message (which is saved for later retrieval by theThrowable.getMessage()method).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). A null value indicates that the cause is nonexistent or unknown.
-
-