* * @internal */ final class NotEnoughData extends RuntimeException implements WebpExifException { public function __construct(int $expected, int $found) { parent::__construct("The file size is expected to be at least {$expected} bytes but is only {$found} bytes long"); } }