Most visited

Recently visited

Added in API level 1

SSLHandshakeException

public class SSLHandshakeException
extends SSLException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ javax.net.ssl.SSLException
           ↳ javax.net.ssl.SSLHandshakeException


表示客户端和服务器无法协商所需的安全级别。 连接不再可用。

Summary

Public constructors

SSLHandshakeException(String reason)

构造一个异常,报告握手期间SSL子系统发现的错误。

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

SSLHandshakeException

Added in API level 1
SSLHandshakeException (String reason)

构造一个异常,报告握手期间SSL子系统发现的错误。

Parameters
reason String: describes the problem.

Hooray!