Doctrine\OrientDB\Binding\Client\Http\EmptyResponseException::__construct PHP Method

__construct() public method

Generates an exception giving information about the client which performed the request and the unreachable location.
public __construct ( string $client, string $location )
$client string
$location string
    public function __construct($client, $location)
    {
        $this->client = $client;
        $this->location = $location;
        $clientClass = get_class($client);
        parent::__construct("{$clientClass} has been unable to retrieve a response for the resource at {$location}");
    }