Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| UnsupportedFilterException | 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 a stream uses a filter the reader cannot decode |
| 9 | * (e.g. JBIG2 without the jbig2dec extension, or an unrecognized |
| 10 | * custom filter name). |
| 11 | */ |
| 12 | final class UnsupportedFilterException extends \RuntimeException {} |