OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
oauth
/
vendor
/
guzzlehttp
/
guzzle
/
src
/
Exception
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/30/2021 11:53:00 AM
rwxr-xr-x
📄
BadResponseException.php
981 bytes
09/30/2021 11:53:38 AM
rw-r--r--
📄
ClientException.php
163 bytes
09/30/2021 11:53:37 AM
rw-r--r--
📄
ConnectException.php
1.38 KB
09/30/2021 11:53:39 AM
rw-r--r--
📄
GuzzleException.php
150 bytes
09/30/2021 11:53:37 AM
rw-r--r--
📄
InvalidArgumentException.php
142 bytes
09/30/2021 11:53:38 AM
rw-r--r--
📄
RequestException.php
4.72 KB
09/30/2021 11:53:39 AM
rw-r--r--
📄
ServerException.php
163 bytes
09/30/2021 11:53:36 AM
rw-r--r--
📄
TooManyRedirectsException.php
101 bytes
09/30/2021 11:53:38 AM
rw-r--r--
📄
TransferException.php
121 bytes
09/30/2021 11:53:36 AM
rw-r--r--
Editing: ConnectException.php
Close
<?php namespace GuzzleHttp\Exception; use Psr\Http\Client\NetworkExceptionInterface; use Psr\Http\Message\RequestInterface; /** * Exception thrown when a connection cannot be established. * * Note that no response is present for a ConnectException */ class ConnectException extends TransferException implements NetworkExceptionInterface { /** * @var RequestInterface */ private $request; /** * @var array */ private $handlerContext; public function __construct( string $message, RequestInterface $request, \Throwable $previous = null, array $handlerContext = [] ) { parent::__construct($message, 0, $previous); $this->request = $request; $this->handlerContext = $handlerContext; } /** * Get the request that caused the exception */ public function getRequest(): RequestInterface { return $this->request; } /** * Get contextual information about the error from the underlying handler. * * The contents of this array will vary depending on which handler you are * using. It may also be just an empty array. Relying on this data will * couple you to a specific handler, but can give more debug information * when needed. */ public function getHandlerContext(): array { return $this->handlerContext; } }