From 7dc2e545c6e7546ddf8655e3bf26d146fc779edd Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 07 Sep 2006 14:12:29 +0000
Subject: [PATCH] Fix a case in which an exception was thrown and caught in the same method, only to be wrapped in a new exception of the same type rather than simply being re-thrown.

---
 opends/src/server/org/opends/server/core/DirectoryServer.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/core/DirectoryServer.java b/opends/src/server/org/opends/server/core/DirectoryServer.java
index 329f790..ff59dd3 100644
--- a/opends/src/server/org/opends/server/core/DirectoryServer.java
+++ b/opends/src/server/org/opends/server/core/DirectoryServer.java
@@ -874,6 +874,10 @@
           throw new InitializationException(msgID, message);
         }
       }
+      catch (InitializationException ie)
+      {
+        throw ie;
+      }
       catch (Exception e)
       {
         assert debugException(CLASS_NAME, "startServer", e);

--
Gitblit v1.10.0