namespace RudderSdk.Core;
/// The client hit a server rate limit (HTTP 429); back off and retry later.
public sealed class RudderRateLimitException : RudderApiException
{
/// Creates the exception.
public RudderRateLimitException(int statusCode, string? code, string message, string? requestId = null)
: base(statusCode, code, message, requestId)
{
}
}