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

org.openmetadata.service.search.SearchRetriableException Maven / Gradle / Ivy

There is a newer version: 1.5.11
Show newest version
package org.openmetadata.service.search;

import org.openmetadata.service.events.errors.RetriableException;

public class SearchRetriableException extends RetriableException {
  private static final long serialVersionUID = 1L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy