Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
InvalidMsgIdException | |
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 | /** |
4 | * @author: Doug Wilbourne (dougwilbourne@gmail.com) |
5 | */ |
6 | declare(strict_types=1); |
7 | |
8 | namespace pvc\validator\err; |
9 | |
10 | use pvc\err\stock\LogicException; |
11 | use Throwable; |
12 | |
13 | /** |
14 | * Class InvalidMsgIdException |
15 | */ |
16 | class InvalidMsgIdException extends LogicException |
17 | { |
18 | public function __construct(string $msgId, Throwable $prev = null) |
19 | { |
20 | parent::__construct($msgId, $prev); |
21 | } |
22 | } |