Files
AI/참고/firecrawl-main/apps/dot-net-sdk/Firecrawl/Exceptions/AuthenticationException.cs

13 lines
347 B
C#
Raw Normal View History

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