Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class RuntimeException extends \RuntimeException implements ExceptionInterface |
||
14 | { |
||
15 | private $pageFile; |
||
16 | private $pageLine; |
||
17 | private $pageCol; |
||
18 | |||
19 | public function __construct(string $message, string $pageFile = null, int $pageLine = null, int $pageCol = null, \Throwable $previous = null) |
||
20 | { |
||
21 | $this->pageFile = $pageFile; |
||
22 | $this->pageLine = $pageLine; |
||
23 | $this->pageCol = $pageCol; |
||
24 | |||
25 | parent::__construct($message, 0, $previous); |
||
26 | } |
||
27 | |||
28 | public function getPageFile() |
||
31 | } |
||
32 | |||
33 | public function getPageLine() |
||
34 | { |
||
35 | return $this->pageLine; |
||
36 | } |
||
37 | |||
38 | public function getPageCol() |
||
41 | } |
||
42 | } |
||
43 |