File "wfInaccessibleDirectoryException.php"
Full Path: /home/refref/public_html/post-excerpt/wordfence/lib/wfInaccessibleDirectoryException.php
File size: 303 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}