| | |
| | | */ |
| | | |
| | | package org.opends.server.admin.client; |
| | | |
| | | |
| | | |
| | | import org.opends.messages.Message; |
| | | |
| | | |
| | | |
| | | import org.opends.server.admin.AdminException; |
| | | |
| | | |
| | |
| | | * Client exceptions represent communications problems, security |
| | | * problems, and service related problems. |
| | | */ |
| | | public class AdminClientException extends AdminException { |
| | | public abstract class AdminClientException extends AdminException { |
| | | |
| | | /** |
| | | * Serialization ID. |
| | |
| | | |
| | | |
| | | /** |
| | | * Create an administration client exception. |
| | | */ |
| | | public AdminClientException() { |
| | | // No implementation required. |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Create an administration client exception with a cause. |
| | | * |
| | | * @param cause |
| | | * The cause. |
| | | */ |
| | | public AdminClientException(Throwable cause) { |
| | | super(cause); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Create an administration client exception with a message and |
| | | * cause. |
| | | * |
| | |
| | | * @param cause |
| | | * The cause. |
| | | */ |
| | | public AdminClientException(Message message, Throwable cause) { |
| | | protected AdminClientException(Message message, Throwable cause) { |
| | | super(message, cause); |
| | | } |
| | | |
| | |
| | | * @param message |
| | | * The message. |
| | | */ |
| | | public AdminClientException(Message message) { |
| | | protected AdminClientException(Message message) { |
| | | super(message); |
| | | } |
| | | } |