com.algolia.exceptions.AlgoliaRequestException 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;
/** Represents a retryable exception (4XX). */
public final class AlgoliaRequestException extends AlgoliaApiException {
public AlgoliaRequestException(String message, Throwable cause, int httpErrorCode) {
super(message, cause, httpErrorCode);
}
public AlgoliaRequestException(String message, int httpErrorCode) {
super(message, httpErrorCode);
}
public AlgoliaRequestException(Throwable cause, int httpErrorCode) {
super(cause, httpErrorCode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy