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

water.api.APIException Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.api;

/**
 * The exception to report various errors during
 * handling API requests.
 */
abstract public class APIException extends RuntimeException {

  public APIException(String s, Throwable t) {
    super(s,t);
  }
  public APIException(String s) {
    super(s);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy