Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class IOException extends \RuntimeException |
||
10 | { |
||
11 | private $path; |
||
12 | |||
13 | public function __construct($message, $code = 0, \Exception $previous = null, $path = null) |
||
14 | { |
||
15 | $this->path = $path; |
||
16 | parent::__construct($message, $code, $previous); |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function getPath() |
||
25 | } |
||
26 | } |
||
27 |