* * @internal */ final class UnexpectedEndOfFile extends RuntimeException implements WebpExifException { public function __construct(int $offset, int $remainingBytes) { $offset = \dechex($offset); parent::__construct("Expected more data after offset 0x{$offset} ({$remainingBytes} bytes remaining)"); } }