com.imiconnect.connect.core.client.RateLimitExceededException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
IMIConnect platform Java SDK client library.
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);
}
}