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

com.algolia.exceptions.AlgoliaRetriesExceededException Maven / Gradle / Ivy

There is a newer version: 4.10.2
Show newest version
package com.algolia.exceptions;

/**
 * Exception thrown when an error occurs during the waitForTask strategy. For example: maximum
 * number of retry exceeded
 */
public class AlgoliaRetriesExceededException extends AlgoliaRuntimeException {

  private static final long serialVersionUID = 1L;

  public AlgoliaRetriesExceededException(String message, Throwable cause) {
    super(message, cause);
  }

  public AlgoliaRetriesExceededException(String message) {
    super(message);
  }

  public AlgoliaRetriesExceededException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy