* * @internal */ final class FileSizeMismatch extends RuntimeException implements WebpExifException { public function __construct(int $expected, int $found) { parent::__construct("The file reports a payload of {$expected} bytes, but actually contains {$found} bytes"); } }