com.clarifai.api.exception.ClarifaiNotAuthorizedException Maven / Gradle / Ivy
The newest version!
package com.clarifai.api.exception;
/** Thrown for requests that are not authorized. Call {@link #getMessage()} for details. */
public class ClarifaiNotAuthorizedException extends ClarifaiException {
private static final long serialVersionUID = 1L;
public ClarifaiNotAuthorizedException(String message) {
super(message == null ? "Not Authorized" : message);
}
}