File "wfInvalidPathException.php"
Full Path: /home/angehriu/nissu.org/wp-content/plugins/wordfence/lib/wfInvalidPathException.php
File size: 266 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}