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

com.facebook.hive.orc.NotAnORCFileException Maven / Gradle / Ivy

There is a newer version: 0.18.9
Show newest version
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