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
3declare(strict_types=1);
4
5namespace 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 */
12final class InvalidPdfException extends \RuntimeException {}