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; } }