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

com.clinia.exceptions.CliniaRetriesExceededException Maven / Gradle / Ivy

package com.clinia.exceptions;

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

  private static final long serialVersionUID = 1L;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy