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

com.descope.exception.RateLimitExceededException Maven / Gradle / Ivy

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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy