From a9a0f513031681cd7cf4093976c621f70c40844d Mon Sep 17 00:00:00 2001 From: theli Date: Tue, 3 Oct 2006 15:40:18 +0000 Subject: [PATCH] *) suppressing InterruptedException errormessage See: http://www.yacy-forum.de/viewtopic.php?t=2915 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2705 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSwitchboard.java | 1 + 1 file changed, 1 insertion(+) diff --git a/source/de/anomic/plasma/plasmaSwitchboard.java b/source/de/anomic/plasma/plasmaSwitchboard.java index 0adc1cabe..186906801 100644 --- a/source/de/anomic/plasma/plasmaSwitchboard.java +++ b/source/de/anomic/plasma/plasmaSwitchboard.java @@ -1751,6 +1751,7 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser document.close(); document = null; } catch (Exception e) { + if (e instanceof InterruptedException) throw (InterruptedException)e; this.log.logSevere("Unexpected exception while parsing/indexing URL ",e); } catch (Error e) { this.log.logSevere("Unexpected exception while parsing/indexing URL ",e);