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

com.refinitiv.eta.transport.CompressorException Maven / Gradle / Ivy

package com.refinitiv.eta.transport;

/* Compression or decompression error. */
public class CompressorException extends RuntimeException
{
    private static final long serialVersionUID = 1L;

    CompressorException(String msg, Throwable t)
    {
        super(msg, t);
    }

    CompressorException(String msg)
    {
        super(msg);
    }

    CompressorException()
    {
        super();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy