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

com.algolia.search.exceptions.AlgoliaRuntimeException Maven / Gradle / Ivy

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

/** Exception thrown when an error occurs during the Serialization/Deserialization process */
public class AlgoliaRuntimeException extends RuntimeException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy