
clarifai2.exception.ClarifaiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Clarifai Java API Client
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