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

matthew_swift
03.36.2007 550b1d6e3a093fbf315c4bcee971736f722e0830
opendj-sdk/opends/src/server/org/opends/server/admin/ManagedObjectAlreadyExistsException.java
@@ -26,7 +26,11 @@
 */
package org.opends.server.admin;
import org.opends.messages.Message;
import static org.opends.messages.AdminMessages.*;
/**
@@ -41,16 +45,12 @@
   */
  private static final long serialVersionUID = -2344653674171609366L;
  // Simple description of this exception for debugging.
  private static final String MSG = "A managed object could not be created"
      + " because there is an existing managed object with the same name";
  /**
   * Create a managed object already exists exception.
   */
  public ManagedObjectAlreadyExistsException() {
    super(Message.raw(MSG));
    super(ERR_MANAGED_OBJECT_ALREADY_EXISTS_EXCEPTION.get());
  }
}