Module java.base
Package javax.net.ssl

Class SSLHandshakeException

所有实现的接口:
Serializable

public class SSLHandshakeException extends SSLException
表示客户端和服务器无法协商所需的安全级别。连接不再可用。
自从:
1.4
参见:
  • Constructor Details

    • SSLHandshakeException

      public SSLHandshakeException(String reason)
      构造一个报告在握手期间SSL子系统发现的错误的异常。
      参数:
      reason - 描述问题。
    • SSLHandshakeException

      public SSLHandshakeException(String message, Throwable cause)
      使用指定的详细消息和原因创建一个SSLHandshakeException
      参数:
      message - 详细消息(稍后可通过Throwable.getMessage()方法检索)。
      cause - 原因(稍后可通过Throwable.getCause()方法检索)。(允许null值,表示原因不存在或未知。)
      自从:
      19