From 58d79a9ac1ded9bdba0830640ae21418e13b9838 Mon Sep 17 00:00:00 2001 From: theli Date: Sun, 19 Nov 2006 13:28:09 +0000 Subject: [PATCH] *) more error logging git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2974 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/soap/httpdSoapHandler.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/de/anomic/soap/httpdSoapHandler.java b/source/de/anomic/soap/httpdSoapHandler.java index 1fdb31241..d5c3ff9e0 100644 --- a/source/de/anomic/soap/httpdSoapHandler.java +++ b/source/de/anomic/soap/httpdSoapHandler.java @@ -244,6 +244,9 @@ public final class httpdSoapHandler extends httpdAbstractHandler implements http } catch (Exception e) { this.theLogger.logSevere("Unable to initialize soap engine",e); throw e; + } catch (Error e) { + this.theLogger.logSevere("Unable to initialize soap engine",e); + throw e; } try { @@ -261,6 +264,9 @@ public final class httpdSoapHandler extends httpdAbstractHandler implements http } catch (Exception e) { this.theLogger.logSevere("Unable to deploy default soap services.",e); throw e; + } catch (Error e) { + this.theLogger.logSevere("Unable to deploy default soap services.",e); + throw e; } }