Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordfence/lib/wfInvalidPathException.php
Rachit Bhargava 5d0f0734d8 first commit
2023-07-21 17:12:10 -04: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;
}
}