BCXAPI.Exceptions.RateLimitExceededException.RateLimitExceededException C# (CSharp) Method

RateLimitExceededException() public method

public RateLimitExceededException ( int retry_in_seconds ) : System
retry_in_seconds int
return System
        public RateLimitExceededException(int retry_in_seconds)
            : base(string.Format("Rate limit exceeded, try again in {0}", retry_in_seconds), 429)
        {
            _retryInSeconds = retry_in_seconds;
        }
RateLimitExceededException