Better exception message

This commit is contained in:
litetex 2021-05-21 19:53:39 +02:00
parent 86bb9efb5d
commit b310922fc0
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class YoutubeCommentsInfoItemExtractor implements CommentsInfoItemExtract
return (int) Utils.mixedNumberWordToLong(voteCount);
} catch (Exception e) {
throw new ParsingException("Unexpected error while converting vote count", e);
throw new ParsingException("Unexpected error while converting vote count to like count", e);
}
}