From 6c9df13552d9bb0d1d10ad96ec27f014d7c13d91 Mon Sep 17 00:00:00 2001 From: allo Date: Mon, 4 Jun 2007 20:30:40 +0000 Subject: [PATCH] more debugging git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3791 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/urlPattern/abstractURLPattern.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/urlPattern/abstractURLPattern.java b/source/de/anomic/plasma/urlPattern/abstractURLPattern.java index 973637df5..db87594c4 100644 --- a/source/de/anomic/plasma/urlPattern/abstractURLPattern.java +++ b/source/de/anomic/plasma/urlPattern/abstractURLPattern.java @@ -102,7 +102,7 @@ public abstract class abstractURLPattern implements plasmaURLPattern { protected HashMap getBlacklistMap(String blacklistType) { if (blacklistType == null) throw new IllegalArgumentException(); - if (!BLACKLIST_TYPES.contains(blacklistType)) throw new IllegalArgumentException("Unknown backlist type."); + if (!BLACKLIST_TYPES.contains(blacklistType)) throw new IllegalArgumentException("Unknown blacklist type: "+blacklistType+"."); return (HashMap) this.hostpaths.get(blacklistType); }