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

Nicolas Capponi
24.43.2014 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf
opendj3-server-dev/src/server/org/opends/server/backends/jeb/JebException.java
@@ -22,13 +22,14 @@
 *
 *
 *      Copyright 2006-2009 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 */
package org.opends.server.backends.jeb;
import org.opends.server.types.IdentifiedException;
import org.opends.messages.Message;
import org.forgerock.i18n.LocalizableMessage;
/**
@@ -64,7 +65,7 @@
   *
   * @param  message    The message that explains the problem that occurred.
   */
  public JebException(Message message)
  public JebException(LocalizableMessage message)
  {
    super(message);
  }
@@ -78,7 +79,7 @@
   * @param  message    The message that explains the problem that occurred.
   * @param  cause      The exception that was caught to trigger this exception.
   */
  public JebException(Message message, Throwable cause)
  public JebException(LocalizableMessage message, Throwable cause)
  {
    super(message, cause);
  }