File "wfInvalidPathException.php"

Full Path: /home/rrterraplen/public_html/wp-content-20241221212636/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;
	}

}