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