for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Signifly\Shopify\Exceptions;
use Illuminate\Http\Client\Response;
class TooManyRequestsException extends \Exception
{
public Response $response;
public function __construct(Response $response, $message = null)
$this->response = $response;
parent::__construct($message ?? 'Too many requests.');
}