📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 19:27:51
📂
/ (Root)
/
home
/
apkbfjox
/
shamapk.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
ai-http-request
/
domain
/
exceptions
📍 /home/apkbfjox/shamapk.com/wp-content/plugins/wordpress-seo/src/ai-http-request/domain/exceptions
🔄 Refresh
✏️
Editing: payment-required-exception.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\AI_HTTP_Request\Domain\Exceptions; use Throwable; /** * Class to manage a 402 - payment required response. */ class Payment_Required_Exception extends Remote_Request_Exception { /** * The missing plugin licenses. * * @var string[] */ private $missing_licenses; /** * Payment_Required_Exception constructor. * * @param string $message The error message. * @param int $code The error status code. * @param string $error_identifier The error code identifier, used to identify a type of error. * @param Throwable| null $previous The previously thrown exception. * @param string[] $missing_licenses The missing plugin licenses. */ public function __construct( $message = '', $code = 0, $error_identifier = '', $previous = null, $missing_licenses = [] ) { $this->missing_licenses = $missing_licenses; parent::__construct( $message, $code, $error_identifier, $previous ); } /** * Gets the missing plugin licences. * * @return string[] The missing plugin licenses. */ public function get_missing_licenses() { return $this->missing_licenses; } }
💾 Save Changes
❌ Cancel