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

tech.tablesaw.io.RuntimeIOException Maven / Gradle / Ivy

The newest version!
package tech.tablesaw.io;

import java.io.IOException;

/**
 * An Runtime exception that wraps IOException so that client code need not catch IOException in
 * nearly every use of Tablesaw
 */
public class RuntimeIOException extends RuntimeException {
  /**
   * Constructs a new Runtime exception from the given checked exception
   *
   * @param cause An IO Exception
   */
  public RuntimeIOException(IOException cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy