Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| InvalidPdfException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\Pdf\Reader\Exception; |
| 6 | |
| 7 | /** |
| 8 | * Thrown when the parser encounters structurally invalid PDF data that |
| 9 | * cannot be recovered (e.g. missing %PDF header, corrupt xref table, |
| 10 | * unresolvable /Root catalog). |
| 11 | */ |
| 12 | final class InvalidPdfException extends \RuntimeException {} |