for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Newsletter\Exceptions;
use Exception;
class FailedResponse extends Exception
{
public $response;
public function __construct($response)
$this->response = $response;
}