Your IP : 3.16.135.36


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

<?php

class wfInvalidPathException extends RuntimeException {

	private $path;

	public function __construct($message, $path) {
		parent::__construct("{$message} for path {$path}");
		$this->path = $path;
	}

	public function getPath() {
		return $this->path;
	}

}