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 wfInaccessibleDirectoryException extends RuntimeException {
|
||||
|
||||
private $directory;
|
||||
|
||||
public function __construct($message, $directory) {
|
||||
parent::__construct("{$message}: {$directory}");
|
||||
$this->directory = $directory;
|
||||
}
|
||||
|
||||
public function getDirectory() {
|
||||
return $this->directory;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user