com.facebook.hive.orc.NotAnORCFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-dwrf Show documentation
Show all versions of hive-dwrf Show documentation
DWRF file format for Hive
package com.facebook.hive.orc;
public class NotAnORCFileException extends RuntimeException {
/**
* Default constructor
*/
public NotAnORCFileException() {
}
/**
* @param message The detailed message
*/
public NotAnORCFileException(String message) {
super(message);
}
/**
*
* @param cause The cause of this exception
*/
public NotAnORCFileException(Throwable cause) {
super(cause);
}
/**
*
* @param message The detailed message
* @param cause The cause of this exception
*/
public NotAnORCFileException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy