Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| InvalidSvgException | 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\Svg\Exception; |
| 6 | |
| 7 | /** |
| 8 | * Thrown when SVG input fails to parse — malformed XML, wrong root element, |
| 9 | * unsupported feature (e.g. XInclude), or any value-level parse error |
| 10 | * encountered while building the typed tree. |
| 11 | */ |
| 12 | final class InvalidSvgException extends \RuntimeException {} |