for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\Client\Socket\Exception;
use Psr\Http\Client\NetworkExceptionInterface;
use Psr\Http\Message\RequestInterface;
class NetworkException extends \RuntimeException implements NetworkExceptionInterface
{
private $request;
public function __construct(string $message, RequestInterface $request, \Exception $previous = null)
$this->request = $request;
parent::__construct($message, 0, $previous);
}
public function getRequest(): RequestInterface
return $this->request;