for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace SlevomatCsobGateway\Api;
class ForbiddenException extends RequestException
{
public function __construct(Response $response)
parent::__construct('Forbidden', $response);
}