Fixed webtoons malformed url error message

This commit is contained in:
cyian-1756 2017-11-09 22:02:19 -05:00
parent 13162bed73
commit 5a81e080f5

View File

@ -63,7 +63,7 @@ public class WebtoonsRipper extends AbstractHTMLRipper {
if (mat.matches()) { if (mat.matches()) {
return mat.group(1); 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);
} }