| | |
| | | * Portions Copyright 2006-2007 Sun Microsystems, Inc. |
| | | */ |
| | | package org.opends.server.tools; |
| | | import org.opends.messages.Message; |
| | | |
| | | import org.opends.server.types.OpenDsException; |
| | | |
| | | |
| | | |
| | | /** |
| | |
| | | * creating an SSL connection. |
| | | */ |
| | | public class SSLConnectionException |
| | | extends Exception |
| | | { |
| | | extends OpenDsException { |
| | | |
| | | |
| | | |
| | |
| | | * |
| | | * @param message The message to use for this exception. |
| | | */ |
| | | public SSLConnectionException(String message) |
| | | public SSLConnectionException(Message message) |
| | | { |
| | | super(message); |
| | | |
| | |
| | | * @param cause The underlying cause that triggered this |
| | | * exception. |
| | | */ |
| | | public SSLConnectionException(String message, Throwable cause) |
| | | public SSLConnectionException(Message message, Throwable cause) |
| | | { |
| | | super(message, cause); |
| | | |