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

com.imiconnect.connect.core.client.RateLimitExceededException Maven / Gradle / Ivy

The newest version!
package com.imiconnect.connect.core.client;

import javax.annotation.Nullable;

/** Thrown when the rate limit associated with an account has been reached for a given period. */
public class RateLimitExceededException extends HttpClientErrorException {

  public RateLimitExceededException(String requestId, String reason, @Nullable String errorCode) {
    super(requestId, 429, reason, errorCode);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy