Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| ISOException | |
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 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Vultr\VultrPhp\Services\ISO; |
| 6 | |
| 7 | use Throwable; |
| 8 | use Vultr\VultrPhp\Services\VultrServiceException; |
| 9 | |
| 10 | class ISOException extends VultrServiceException |
| 11 | { |
| 12 | public function __construct(string $message, ?int $http_code = null, ?Throwable $previous = null) |
| 13 | { |
| 14 | parent::__construct($message, VultrServiceException::ISO_CODE, $http_code, $previous); |
| 15 | } |
| 16 | } |