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

kenneth_suter
15.34.2007 cfc513043c5830b5a967733066068c7097b42e3c
opendj-sdk/opends/src/server/org/opends/server/admin/AdminRuntimeException.java
@@ -26,6 +26,7 @@
 */
package org.opends.server.admin;
import org.opends.messages.Message;
@@ -64,8 +65,8 @@
   * @param cause
   *          The cause.
   */
  protected AdminRuntimeException(String message, Throwable cause) {
    super(message, cause);
  protected AdminRuntimeException(Message message, Throwable cause) {
    super(message.toString(), cause);
  }
@@ -76,7 +77,7 @@
   * @param message
   *          The message.
   */
  protected AdminRuntimeException(String message) {
    super(message);
  protected AdminRuntimeException(Message message) {
    super(message.toString());
  }
}