* * @internal */ final class UnexpectedChunk extends RuntimeException implements WebpExifException { public function __construct(string $fourCC, int $offset) { $offset = \dechex($offset); parent::__construct("Found the unexpected chunk `{$fourCC}` at offset 0x{$offset}"); } }