Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
RasterException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Phpdftk\Raster\Exception;
6
7/**
8 * Umbrella exception for the raster package. Thrown for out-of-
9 * bounds pixel access, buffer size mismatches, encoder failures,
10 * and any other raster-specific error. Pure runtime — not a
11 * subclass of `RuntimeException` directly because callers may want
12 * to catch raster errors without catching every RuntimeException.
13 */
14class RasterException extends \RuntimeException {}