All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ning.compress.CompressionFormatException Maven / Gradle / Ivy

Go to download

Compression codec for LZF encoding for particularly encoding/decoding, with reasonable compression. Compressor is basic Lempel-Ziv codec, without Huffman (deflate/gzip) or statistical post-encoding. See "http://oldhome.schmorp.de/marc/liblzf.html" for more on original LZF package.

There is a newer version: 1.1.2
Show newest version
package com.ning.compress;

import java.io.IOException;

/**
 * Base exception used by compression codecs when encountering a problem
 * with underlying data format, usually due to data corruption.
 */
public class CompressionFormatException extends IOException
{
    private static final long serialVersionUID = 1L;

    protected CompressionFormatException(String message) {
        super(message);
    }

    protected CompressionFormatException(Throwable t) {
        super();
        initCause(t);
    }

    protected CompressionFormatException(String message, Throwable t) {
        super(message);
        initCause(t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy