From 3237fe1cc7ccffe446c597966abb478df74b2e6b Mon Sep 17 00:00:00 2001 From: orbiter Date: Tue, 7 Mar 2006 19:38:10 +0000 Subject: [PATCH] added IOException for httpc client error see also http://www.yacy-forum.de/viewtopic.php?p=18615#18615 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1842 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/http/httpc.java | 1 + 1 file changed, 1 insertion(+) diff --git a/source/de/anomic/http/httpc.java b/source/de/anomic/http/httpc.java index 68e688ec8..d870656b3 100644 --- a/source/de/anomic/http/httpc.java +++ b/source/de/anomic/http/httpc.java @@ -1695,6 +1695,7 @@ do upload } else { serverLog.logSevere("HTTPC", "RESPONSE PARSE ERROR: HOST='" + httpc.this.host + "', PATH='" + httpc.this.requestPath + "', STATUS='" + this.status + "'"); serverLog.logSevere("HTTPC", "..............BUFFER: " + buffer); + throw new IOException(this.status); } } }