public class SSLException extends IOException
Constructor and Description |
---|
SSLException(String reason)
构造一个异常报告SSL子系统发现的错误。
|
SSLException(String message, Throwable cause)
创建具有
SSLException 的详细消息和原因的SSLException。
|
SSLException(Throwable cause)
创建
SSLException 与指定的原因和
(cause==null ? null : cause.toString())详细消息(它通常包含的
cause类和详细消息)。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public SSLException(String reason)
reason
- 描述问题。
public SSLException(String message, Throwable cause)
SSLException
的详细消息和原因的SSLException。
message
- 详细信息(保存以供稍后通过
Throwable.getMessage()
方法
检索 )。
cause
- 原因(保存以供Throwable.getCause()
方法稍后检索)。
(A null的值是允许的,并且表示原因不存在或未知。)
public SSLException(Throwable cause)
SSLException
与指定的原因和
(cause==null ? null : cause.toString())详细消息(它通常包含的
cause类和详细消息)。
cause
- 原因(保存以供Throwable.getCause()
方法稍后检索)。
( 允许 A null值,并表示原因不存在或未知。)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.