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

kenneth_suter
15.34.2007 cfc513043c5830b5a967733066068c7097b42e3c
opendj-sdk/opends/src/server/org/opends/server/admin/ManagedObjectNotFoundException.java
@@ -26,7 +26,7 @@
 */
package org.opends.server.admin;
import org.opends.messages.Message;
/**
@@ -40,7 +40,7 @@
  private static final long serialVersionUID = -477551786551892978L;
  // Simple description of this exception for debugging.
  private static final String MSG =
  private static final String MSG = // TODO: i18n
    "The requested managed object could not be found";
@@ -49,7 +49,7 @@
   * Create a managed object not found exception.
   */
  public ManagedObjectNotFoundException() {
    super(MSG);
    super(Message.raw(MSG));
  }
@@ -61,6 +61,6 @@
   *          The cause of this exception.
   */
  public ManagedObjectNotFoundException(Throwable cause) {
    super(MSG, cause);
    super(Message.raw(MSG), cause);
  }
}