🏠 Root
/
home
/
artorgp
/
paranartgallery
/
wp-content__cee8048
/
plugins
/
wordfence
/
lib
/
Editing: 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; } }
Save
Cancel