com.descope.exception.RateLimitExceededException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
The newest version!
package com.descope.exception;
import lombok.Getter;
@Getter
public class RateLimitExceededException extends DescopeException {
private long retryAfterSeconds;
public RateLimitExceededException(String message, String code, long retryAfterSeconds) {
super(message);
setCode(code);
this.retryAfterSeconds = retryAfterSeconds;
}
}