X7ROOT File Manager
Current Path:
/home/gfecatvj/.composer/vendor/guzzlehttp/guzzle/src/Exception
home
/
gfecatvj
/
.composer
/
vendor
/
guzzlehttp
/
guzzle
/
src
/
Exception
/
📁
..
📄
BadResponseException.php
(806 B)
📄
ClientException.php
(161 B)
📄
ConnectException.php
(726 B)
📄
GuzzleException.php
(293 B)
📄
RequestException.php
(5.55 KB)
📄
SeekException.php
(588 B)
📄
ServerException.php
(161 B)
📄
TooManyRedirectsException.php
(99 B)
📄
TransferException.php
(119 B)
Editing: BadResponseException.php
<?php namespace GuzzleHttp\Exception; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; /** * Exception when an HTTP error occurs (4xx or 5xx error) */ class BadResponseException extends RequestException { public function __construct( $message, RequestInterface $request, ResponseInterface $response = null, \Exception $previous = null, array $handlerContext = [] ) { if (null === $response) { @trigger_error( 'Instantiating the ' . __CLASS__ . ' class without a Response is deprecated since version 6.3 and will be removed in 7.0.', E_USER_DEPRECATED ); } parent::__construct($message, $request, $response, $previous, $handlerContext); } }
Upload File
Create Folder