Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content-20241221212636
/
plugins
/
wordfence
/
lib
:
wfInaccessibleDirectoryException.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php class wfInaccessibleDirectoryException extends RuntimeException { private $directory; public function __construct($message, $directory) { parent::__construct("{$message}: {$directory}"); $this->directory = $directory; } public function getDirectory() { return $this->directory; } }