Merge pull request #163 from RipMeApp/webtoons

Fixed webtoons malformed url error message
This commit is contained in:
cyian-1756 2017-11-12 02:22:52 -05:00 committed by GitHub
commit 22f438f445
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ public class WebtoonsRipper extends AbstractHTMLRipper {
if (mat.matches()) {
return mat.group(1);
}
throw new MalformedURLException("You should never see this error message");
throw new MalformedURLException("Expected URL format: http://www.webtoons.com/LANG/CAT/TITLE/VOL/, got: " + url);
}