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

matthew_swift
04.25.2007 33053d18c6a21aa199e0b2022636e8bd4f513a63
Fix bug which prevented the underlying LDAP error message from being accessible in OperationRejectedExceptions.
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/admin/client/ldap/LDAPManagedObject.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/admin/client/ldap/LDAPManagedObject.java
@@ -208,7 +208,7 @@
      throw new ManagedObjectAlreadyExistsException();
    } catch (OperationNotSupportedException e) {
      // Unwilling to perform.
      if (e.getMessage() != null) {
      if (e.getMessage() == null) {
        throw new OperationRejectedException();
      } else {
        Message m = Message.raw("%s", e.getMessage());