HOME


Mini Shell 1.0
DIR: /home/depancom/www/depancomblogus/wp-content/plugins_vieux/wordfence/lib/
Upload File :
Current File : /home/depancom/www/depancomblogus/wp-content/plugins_vieux/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;
	}

}