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

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

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

/** Thrown for requests that fail due to bad input. Call {@link #getMessage()} for details. */
public class ClarifaiBadRequestException extends ClarifaiException {
  private static final long serialVersionUID = 1L;

  public ClarifaiBadRequestException(String message) {
    super(message == null ? "Bad Request" : message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy