Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| AppException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | class AppException extends Exception |
| 4 | { |
| 5 | public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) |
| 6 | { |
| 7 | parent::__construct($message, $code, $previous); |
| 8 | } |
| 9 | } |