Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordfence/lib/wfInvalidPathException.php
Tony Volpe 4eb982d7a8 Merged in feature/from-pantheon (pull request #16)
code from pantheon

* code from pantheon
2024-01-10 17:03:02 +00:00

16 lines
266 B
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;
}
}