com.ning.compress.lzf.LZFException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-core Show documentation
Show all versions of spark-core Show documentation
Shaded version of Apache Spark 2.x.x for Presto
The newest version!
package com.ning.compress.lzf;
import com.ning.compress.CompressionFormatException;
public class LZFException extends CompressionFormatException
{
private static final long serialVersionUID = 1L;
public LZFException(String message) {
super(message);
}
public LZFException(Throwable t) {
super(t);
}
public LZFException(String message, Throwable t) {
super(message, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy