com.ning.compress.gzip.GZIPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compress-lzf Show documentation
Show all versions of compress-lzf Show documentation
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.
package com.ning.compress.gzip;
import com.ning.compress.CompressionFormatException;
public class GZIPException extends CompressionFormatException
{
private static final long serialVersionUID = 1L;
public GZIPException(String message) {
super(message);
}
public GZIPException(Throwable t) {
super(t);
}
public GZIPException(String message, Throwable t) {
super(message, t);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy