- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- javax.net.ssl.SSLException
-
- javax.net.ssl.SSLPeerUnverifiedException
-
- All Implemented Interfaces:
-
Serializable
public class SSLPeerUnverifiedException extends SSLException
表示对等体的身份尚未验证。当对等体不能识别自身时(例如,没有证书,正在使用的特定密码套件不支持身份验证,或在SSL握手期间不建立对等体身份验证),则会抛出此异常。
- 从以下版本开始:
- 1.4
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 SSLPeerUnverifiedException(String reason)
构造一个异常,报告SSL对等体的身份未被验证。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
SSLPeerUnverifiedException
public SSLPeerUnverifiedException(String reason)
构造一个异常,报告SSL对等体的身份未被验证。- 参数
-
reason
- describes the problem.
-
-