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

ludovicp
30.57.2010 7516be263f971494c06656f9a87337b19b11c9ac
opends/src/server/org/opends/server/tools/LDAPModify.java
@@ -98,13 +98,13 @@
  private static final String CLASS_NAME = "org.opends.server.tools.LDAPModify";
  // The message ID counter to use for requests.
  private AtomicInteger nextMessageID;
  private final AtomicInteger nextMessageID;
  // The print stream to use for standard error.
  private PrintStream err;
  private final PrintStream err;
  // The print stream to use for standard output.
  private PrintStream out;
  private final PrintStream out;
  // The LDIF file name.
  private String fileName = null;
@@ -352,7 +352,8 @@
          err.println(wrapText(ae.getMessage(), MAX_LINE_WIDTH));
          if (!modifyOptions.continueOnError())
          {
            throw new IOException(ae.getMessage());
            String msg = LDAPToolUtils.getMessageForConnectionException(ae);
            throw new IOException(msg, ae);
          }
          return;
        }