From e28065fe2eb963562cfac74200a4da070cbad18f Mon Sep 17 00:00:00 2001 From: Radoje Albijanic Date: Fri, 6 Apr 2018 18:02:54 +0200 Subject: [PATCH] 413 error proper handle. --- src/Mailgun/Api/HttpApi.php | 2 ++ src/Mailgun/Exception/HttpClientException.php | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/src/Mailgun/Api/HttpApi.php b/src/Mailgun/Api/HttpApi.php index b2b7586..b612add 100644 --- a/src/Mailgun/Api/HttpApi.php +++ b/src/Mailgun/Api/HttpApi.php @@ -95,6 +95,8 @@ abstract class HttpApi throw HttpClientException::requestFailed($response); case 404: throw HttpClientException::notFound($response); + case 413: + throw HttpClientException::payloadTooLarge($response); case 500 <= $statusCode: throw HttpServerException::serverError($statusCode); default: diff --git a/src/Mailgun/Exception/HttpClientException.php b/src/Mailgun/Exception/HttpClientException.php index fd0c0bb..5c0eb1d 100644 --- a/src/Mailgun/Exception/HttpClientException.php +++ b/src/Mailgun/Exception/HttpClientException.php @@ -73,6 +73,11 @@ final class HttpClientException extends \RuntimeException implements Exception return new self('The endpoint you have tried to access does not exist. Check if the domain matches the domain you have configure on Mailgun.', 404, $response); } + public static function payloadTooLarge(ResponseInterface $response = null) + { + return new self('Payload too large, your total attachment size is too big.', 413, $response); + } + /** * @return ResponseInterface */