com.ning.compress.CompressionFormatException 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;
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 - 2025 Weber Informatics LLC | Privacy Policy