for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace SlevomatCsobGateway\Api;
use function sprintf;
class InternalErrorException extends RequestException
{
public function __construct(Response $response)
parent::__construct(sprintf('Internal Error - response code %d', $response->getResponseCode()->getValue()), $response);
}