- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- javax.net.ssl.SSLException
-
- All Implemented Interfaces:
-
Serializable
public class SSLException extends IOException
表示由SSL子系统检测到的某种错误。 此类是由与SSL相关的操作失败产生的一般异常类。- 从以下版本开始:
- 1.4
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 SSLException(String reason)
构造一个异常报告SSL子系统发现的错误。SSLException(String message, Throwable cause)
创建一个具有指定的详细信息和原因的SSLException
。SSLException(Throwable cause)
创建SSLException
与指定的原因和详细消息(cause==null ? null : cause.toString())
(它通常包含的类和详细消息cause
)。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
SSLException
public SSLException(String reason)
构造一个异常报告SSL子系统发现的错误。- 参数
-
reason
- 描述问题。
-
SSLException
public SSLException(String message, Throwable cause)
创建一个具有指定的详细信息和原因的SSLException
。- 参数
-
message
- 详细信息(保存以供Throwable.getMessage()
方法稍后检索)。 -
cause
- 原因(保存以供Throwable.getCause()
方法稍后检索)。 (Anull
值是允许的,表示原因不存在或未知。) - 从以下版本开始:
- 1.5
-
SSLException
public SSLException(Throwable cause)
创建SSLException
与指定的原因和详细消息(cause==null ? null : cause.toString())
(它通常包含的类和详细消息cause
)。- 参数
-
cause
- 原因(保存以供Throwable.getCause()
方法稍后检索)。 (Anull
值是允许的,并且表明原因不存在或未知。) - 从以下版本开始:
- 1.5
-
-