java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
javax.net.ssl.SSLException
- 所有已实现的接口:
-
Serializable
表示SSL子系统检测到的某种错误。此类是由失败的SSL相关操作产生的异常的通用类。
- 自从:
- 1.4
- 参见:
-
Constructor Summary
ConstructorDescriptionSSLException
(String reason) 构造一个报告SSL子系统发现的错误的异常。SSLException
(String message, Throwable cause) 使用指定的详细消息和原因创建一个SSLException
。SSLException
(Throwable cause) 使用指定的原因和详细消息(cause==null ? null : cause.toString())
(通常包含cause
的类和详细消息)创建一个SSLException
。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SSLException
构造一个报告SSL子系统发现的错误的异常。- 参数:
-
reason
- 描述问题。
-
SSLException
使用指定的详细消息和原因创建一个SSLException
。- 参数:
-
message
- 详细消息(稍后可通过Throwable.getMessage()
方法检索)。 -
cause
- 原因(稍后可通过Throwable.getCause()
方法检索)。 (允许null
值,并表示原因不存在或未知。) - 自从:
- 1.5
-
SSLException
使用指定的原因和详细消息(cause==null ? null : cause.toString())
(通常包含cause
的类和详细消息)创建一个SSLException
。- 参数:
-
cause
- 原因(稍后可通过Throwable.getCause()
方法检索)。 (允许null
值,并表示原因不存在或未知。) - 自从:
- 1.5
-