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

org.openmetadata.service.events.errors.RetriableException Maven / Gradle / Ivy

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

/** A retriable exception is a transient exception that if retried may succeed. */
public abstract class RetriableException extends EventPublisherException {

  private static final long serialVersionUID = 1L;

  protected RetriableException(String message, Throwable cause) {
    super(message, cause);
  }

  protected RetriableException(String message) {
    super(message);
  }

  protected RetriableException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy