Class UnsupportedCompressionAlgorithmException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.compress.CompressException
org.apache.commons.compress.archivers.ArchiveException
org.apache.commons.compress.archivers.dump.DumpArchiveException
org.apache.commons.compress.archivers.dump.UnsupportedCompressionAlgorithmException
- All Implemented Interfaces:
Serializable
Unsupported compression algorithm. The dump archive uses an unsupported compression algorithm (BZLIB2 or LZO).
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aUnsupportedCompressionAlgorithmException
.UnsupportedCompressionAlgorithmException
(String algorithm) Constructs aUnsupportedCompressionAlgorithmException
with the specified algorithm name. -
Method Summary
Methods inherited from class org.apache.commons.compress.archivers.ArchiveException
requireNonNull
Methods inherited from class org.apache.commons.compress.CompressException
requireNonNull
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedCompressionAlgorithmException
Constructs aUnsupportedCompressionAlgorithmException
. -
UnsupportedCompressionAlgorithmException
Constructs aUnsupportedCompressionAlgorithmException
with the specified algorithm name.- Parameters:
algorithm
- The algorithm name to use in the detailed message.
-