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

water.api.FSIOException Maven / Gradle / Ivy

package water.api;

public class FSIOException extends APIException {
  public FSIOException(String path, Throwable t) {
    super( "FS IO Failure: \n"
            + " accessed path : " + path, t);
  }

  public FSIOException(String path, String msg) {
    super( "FS IO Failure: \n"
            + " accessed path : " + path
            + " msg: " + msg);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy