mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
07.12.2006 2c2a1645038aaaea3da33a09d0d9664f59d92bdc
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.
1 files modified
4 ■■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/core/DirectoryServer.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/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);