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

Nicolas Capponi
24.43.2014 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf
opendj3-server-dev/src/server/org/opends/server/config/ConfigException.java
@@ -22,9 +22,10 @@
 *
 *
 *      Copyright 2006-2008 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 */
package org.opends.server.config;
import org.opends.messages.Message;
import org.forgerock.i18n.LocalizableMessage;
@@ -62,7 +63,7 @@
   *
   * @param  message    The message to use for this configuration exception.
   */
  public ConfigException(Message message)
  public ConfigException(LocalizableMessage message)
  {
    super(message);
  }
@@ -77,7 +78,7 @@
   * @param  cause      The underlying cause that triggered this configuration
   *                    exception.
   */
  public ConfigException(Message message, Throwable cause)
  public ConfigException(LocalizableMessage message, Throwable cause)
  {
    super(message, cause);
  }