*) more verbose exception

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2901 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 19 years ago
parent 1ce4bf969c
commit ad248d61ca

@ -498,8 +498,8 @@ public final class plasmaCrawlStacker {
}
public stackCrawlMessage(String urlHash, kelondroRow.Entry entry) {
if (urlHash == null) throw new NullPointerException();
if (entry == null) throw new NullPointerException();
if (urlHash == null) throw new NullPointerException("Url hash was null");
if (entry == null) throw new NullPointerException("kelondroRow.Entry was null");
try {
this.urlHash = urlHash;

Loading…
Cancel
Save