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:
java.io.Serializable
public class UnsupportedCompressionAlgorithmException extends DumpArchiveException
Unsupported compression algorithm. The dump archive uses an unsupported compression algorithm (BZLIB2 or LZO).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsupportedCompressionAlgorithmException()Constructs aUnsupportedCompressionAlgorithmException.UnsupportedCompressionAlgorithmException(java.lang.String algorithm)Constructs aUnsupportedCompressionAlgorithmExceptionwith 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
-
-
-
-
Constructor Detail
-
UnsupportedCompressionAlgorithmException
public UnsupportedCompressionAlgorithmException()
Constructs aUnsupportedCompressionAlgorithmException.
-
UnsupportedCompressionAlgorithmException
public UnsupportedCompressionAlgorithmException(java.lang.String algorithm)
Constructs aUnsupportedCompressionAlgorithmExceptionwith the specified algorithm name.- Parameters:
algorithm- The algorithm name to use in the detailed message.
-
-