Files

13 lines
342 B
C#
Raw Permalink Normal View History

2026-05-12 19:40:31 +09:00
namespace Firecrawl.Exceptions;
/// <summary>
/// Thrown when the API returns a 429 Too Many Requests response.
/// </summary>
public class RateLimitException : FirecrawlException
{
public RateLimitException(string message, string? errorCode = null, object? details = null)
: base(message, 429, errorCode, details)
{
}
}