File "Util_WpFile_FilesystemRmException.php"
Full Path: /home/mba/public_html/wp-content-20250807152928/plugins/w3-total-cache/Util_WpFile_FilesystemRmException.php
File size: 359 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace W3TC;
class Util_WpFile_FilesystemRmException extends Util_WpFile_FilesystemOperationException {
private $filename;
public function __construct( $message, $credentials_form, $filename ) {
parent::__construct( $message, $credentials_form );
$this->filename = $filename;
}
public function filename() {
return $this->filename;
}
}