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

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

package com.clinia.exceptions;

/** Represents a retryable exception (4XX). */
public final class CliniaRequestException extends CliniaApiException {

  public CliniaRequestException(String message, Throwable cause, int httpErrorCode) {
    super(message, cause, httpErrorCode);
  }

  public CliniaRequestException(String message, int httpErrorCode) {
    super(message, httpErrorCode);
  }

  public CliniaRequestException(Throwable cause, int httpErrorCode) {
    super(cause, httpErrorCode);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy