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