/*
   * Wrap an exception, thrown while attempting to load the StartTlsResponse
   * class, in a configuration exception.
   */
  private ConfigurationException wrapException(Exception e) {
    ConfigurationException ce =
        new ConfigurationException(
            "Cannot load implementation of javax.naming.ldap.StartTlsResponse");

    ce.setRootCause(e);
    return ce;
  }