| | |
| | | * |
| | | * |
| | | * Copyright 2006-2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2014 ForgeRock AS |
| | | */ |
| | | package org.opends.server.tools; |
| | | import org.opends.messages.Message; |
| | | import org.forgerock.i18n.LocalizableMessage; |
| | | |
| | | |
| | | |
| | |
| | | * this to be a fatal problem. |
| | | * @param message The message that explains the problem that occurred. |
| | | */ |
| | | public ClientException(int exitCode, Message message) |
| | | public ClientException(int exitCode, LocalizableMessage message) |
| | | { |
| | | super(message); |
| | | |
| | |
| | | * @param message The message that explains the problem that occurred. |
| | | * @param cause The exception that was caught to trigger this exception. |
| | | */ |
| | | public ClientException(int exitCode, Message message, Throwable cause) |
| | | public ClientException(int exitCode, LocalizableMessage message, Throwable cause) |
| | | { |
| | | super(message, cause); |
| | | |