Your IP : 13.59.173.242


Current Path : /home/sudancam/public_html/wp-content/plugins/wordfence/lib/
Upload File :
Current File : /home/sudancam/public_html/wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php

<?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;
	}

}