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

com.clarifai.api.exception.ClarifaiException Maven / Gradle / Ivy

The newest version!
package com.clarifai.api.exception;

/** Base class for all exceptions thrown by Clarifai API. */
public class ClarifaiException extends RuntimeException {
  private static final long serialVersionUID = 1L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy