PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / vendor_prefixed / guzzlehttp / guzzle / src / Exception / ConnectException.php

ConnectException.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 28.5, at vendor_prefixed/guzzlehttp/guzzle/src/Exception/ConnectException.php

46 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace YoastSEO_Vendor\GuzzleHttp\Exception;
4
5 use YoastSEO_Vendor\Psr\Http\Client\NetworkExceptionInterface;
6 use YoastSEO_Vendor\Psr\Http\Message\RequestInterface;
7 /**
8 * Exception thrown when a connection cannot be established.
9 */
10 class ConnectException extends \YoastSEO_Vendor\GuzzleHttp\Exception\TransferException implements \YoastSEO_Vendor\Psr\Http\Client\NetworkExceptionInterface
11 {
12 /**
13 * @var RequestInterface
14 */
15 private $request;
16 /**
17 * @var array
18 */
19 private $handlerContext;
20 public function __construct(string $message, \YoastSEO_Vendor\Psr\Http\Message\RequestInterface $request, ?\Throwable $previous = null, array $handlerContext = [])
21 {
22 parent::__construct($message, 0, $previous);
23 $this->request = $request;
24 $this->handlerContext = $handlerContext;
25 }
26 /**
27 * Get the request that caused the exception
28 */
29 public function getRequest() : \YoastSEO_Vendor\Psr\Http\Message\RequestInterface
30 {
31 return $this->request;
32 }
33 /**
34 * Get contextual information about the error from the underlying handler.
35 *
36 * The contents of this array will vary depending on which handler you are
37 * using. It may also be just an empty array. Relying on this data will
38 * couple you to a specific handler, but can give more debug information
39 * when needed.
40 */
41 public function getHandlerContext() : array
42 {
43 return $this->handlerContext;
44 }
45 }
46