Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| InvalidSealedDataHeaderException | |
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 | namespace Fingerprint\ServerAPI\Sealed; |
| 4 | |
| 5 | class InvalidSealedDataHeaderException extends \InvalidArgumentException |
| 6 | { |
| 7 | public function __construct() |
| 8 | { |
| 9 | parent::__construct('Invalid sealed data header'); |
| 10 | } |
| 11 | } |