feat(proxy): throw user-readable error on 413 when sending proxied attachments

This commit is contained in:
spiral 2022-09-29 17:54:03 +00:00
parent 5196e332df
commit 014999271f
No known key found for this signature in database
GPG key ID: 244A11E4B0BCF40E
3 changed files with 28 additions and 0 deletions

View file

@ -262,6 +262,7 @@ public class BaseRestClient: IAsyncDisposable
HttpStatusCode.Unauthorized => new UnauthorizedException(response, body, apiError),
HttpStatusCode.NotFound => new NotFoundException(response, body, apiError),
HttpStatusCode.Conflict => new ConflictException(response, body, apiError),
HttpStatusCode.RequestEntityTooLarge => new RequestEntityTooLargeException(response, body, apiError),
HttpStatusCode.TooManyRequests => new TooManyRequestsException(response, body, apiError),
_ => new UnknownDiscordRequestException(response, body, apiError)
};

View file

@ -61,6 +61,14 @@ public class BadRequestException: DiscordRequestException
{ }
}
public class RequestEntityTooLargeException: DiscordRequestException
{
public RequestEntityTooLargeException(HttpResponseMessage response, string responseBody, DiscordApiError? apiError) : base(
response, responseBody, apiError)
{ }
}
public class TooManyRequestsException: DiscordRequestException
{
public TooManyRequestsException(HttpResponseMessage response, string responseBody, DiscordApiError? apiError) :