java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
javax.net.ssl.SSLException
javax.net.ssl.SSLHandshakeException
- 所有已实现的接口:
Serializable
表示客户端和服务无法协商所需的安全级别。连接不再可用。
- 自从:
- 1.4
- 参见:
-
构造方法总结
构造方法构造方法描述SSLHandshakeException(String reason) 构造一个异常,报告 SSL 子系统在握手期间发现的错误。SSLHandshakeException(String message, Throwable cause) 使用指定的详细消息和原因创建SSLHandshakeException。 -
方法总结
在类 java.lang.Throwable 中声明的方法
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
构造方法详细信息
-
SSLHandshakeException
构造一个异常,报告 SSL 子系统在握手期间发现的错误。- 参数:
reason- 描述了问题。
-
SSLHandshakeException
使用指定的详细消息和原因创建SSLHandshakeException。- 参数:
message- 详细消息(保存以供以后通过Throwable.getMessage()方法检索)。cause- 原因(保存以供以后通过Throwable.getCause()方法检索)。 (允许使用null值,表示原因不存在或未知。)- 自从:
- 19
-