protected function get($uri, array $options = [])
 {
     try {
         $response = $this->httpClient->get($uri, $options);
         return $response->getBody()->getContents();
     } catch (RequestException $exception) {
         throw ExceptionWrapper::wrap($exception, $this->serializer);
     }
 }