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

clarifai2.exception.ClarifaiException Maven / Gradle / Ivy

The newest version!
package clarifai2.exception;

public class ClarifaiException extends RuntimeException {

  public ClarifaiException(Throwable cause) {
    super(cause);
  }

  public ClarifaiException(String message) {
    super(message);
  }

  public ClarifaiException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy