com.algolia.exceptions.AlgoliaClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algoliasearch Show documentation
Show all versions of algoliasearch Show documentation
Java client for Algolia Search API
The newest version!
package com.algolia.exceptions;
/** Exception thrown when an error occurs during API requests. */
public class AlgoliaClientException extends AlgoliaRuntimeException {
public AlgoliaClientException(String message, Throwable cause) {
super(message, cause);
}
public AlgoliaClientException(String message) {
super(message);
}
public AlgoliaClientException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy