Merged in feature/from-pantheon (pull request #16)
code from pantheon * code from pantheon
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user