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

com.ning.compress.gzip.GZIPException Maven / Gradle / Ivy

The newest version!
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 - 2025 Weber Informatics LLC | Privacy Policy