Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| InvalidCountryCodeException | |
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\intl\err; |
| 9 | |
| 10 | use pvc\err\stock\LogicException; |
| 11 | use Throwable; |
| 12 | |
| 13 | /** |
| 14 | * Class InvalidCountryCodeException |
| 15 | */ |
| 16 | class InvalidCountryCodeException extends LogicException |
| 17 | { |
| 18 | public function __construct(string $badCountryCode, Throwable $prev = null) |
| 19 | { |
| 20 | parent::__construct($badCountryCode, $prev); |
| 21 | } |
| 22 | } |