Line 113 in /srv/users/youth-sailing/apps/youth-sailing/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php
104 $response->getReasonPhrase() 105 ); 106 107 $summary = static::getResponseBodySummary($response); 108 109 if ($summary !== null) { 110 $message .= ":\n{$summary}\n"; 111 } 112 113 return new $className($message, $request, $response, $previous, $ctx); 114 } 115 116 /** 117 * Get a short summary of the response 118 * 119 * Will return `null` if the response is not printable.