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

Fabio Pistolesi
18.15.2015 e5761b5d7eb2d4ee096706e3e7d726fe250e5d35
OPENDJ-2029 CR-6966 Uncaught exception in dsreplication

Initialize a Throwable through super() ctor instead of API
1 files modified
8 ■■■■ changed files
opendj-sdk/opendj-server-legacy/src/main/java/org/opends/admin/ads/TopologyCacheException.java 8 ●●●● patch | view | raw | blame | history
opendj-sdk/opendj-server-legacy/src/main/java/org/opends/admin/ads/TopologyCacheException.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 *      Portions Copyright 2013 ForgeRock AS.
 *      Portions Copyright 2013-2015 ForgeRock AS.
 */
package org.opends.admin.ads;
@@ -86,8 +86,8 @@
   */
  public TopologyCacheException(ADSContextException ace)
  {
    super(ace);
    type = Type.GENERIC_READING_ADS;
    initCause(ace);
  }
  /**
@@ -97,8 +97,8 @@
  */
  public TopologyCacheException(Type type, Throwable t)
  {
    super(t);
    this.type = type;
    initCause(t);
  }
  /**
@@ -114,8 +114,8 @@
  public TopologyCacheException(Type type, NamingException ne,
      ApplicationTrustManager trustManager, String ldapUrl)
  {
    super(ne);
    this.type = type;
    initCause(ne);
    this.ldapUrl = ldapUrl;
    this.trustManager = trustManager;
  }