Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class Exception |
||
7 | { |
||
8 | /** |
||
9 | * @var BaseException |
||
10 | */ |
||
11 | protected $exception; |
||
12 | |||
13 | /** |
||
14 | * Exception constructor. |
||
15 | * |
||
16 | * @param BaseException $exception |
||
17 | */ |
||
18 | 3 | public function __construct(BaseException $exception) |
|
19 | { |
||
20 | 3 | $this->exception = $exception; |
|
21 | } |
||
22 | |||
23 | /** |
||
24 | * |
||
25 | */ |
||
26 | 3 | public function display() |
|
29 | } |
||
30 | } |
||
31 |