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

Nicolas Capponi
24.43.2014 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf
opendj3-server-dev/src/server/org/opends/server/protocols/asn1/ASN1Exception.java
@@ -26,7 +26,7 @@
 */
package org.opends.server.protocols.asn1;
import org.opends.messages.Message;
import org.forgerock.i18n.LocalizableMessage;
@@ -62,7 +62,7 @@
   *
   * @param  message    The message that explains the problem that occurred.
   */
  public ASN1Exception(Message message)
  public ASN1Exception(LocalizableMessage message)
  {
    super(message);
  }
@@ -76,7 +76,7 @@
   * @param  message    The message that explains the problem that occurred.
   * @param  cause      The exception that was caught to trigger this exception.
   */
  public ASN1Exception(Message message, Throwable cause)
  public ASN1Exception(LocalizableMessage message, Throwable cause)
  {
    super(message, cause);
  }