java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.security.cert.CertificateException
javax.security.cert.CertificateNotYetValidException
- 所有已实现的接口:
-
Serializable
@Deprecated(since="9", forRemoval=true) public class CertificateNotYetValidException extends CertificateException
Deprecated, for removal: This API element is subject to removal in a future version.
证书尚未有效异常。每当当前
Date
或指定的Date
在证书有效期内的notBefore
日期/时间之前时,就会抛出此异常。
注意: 包javax.security.cert
中的类是为了与早期版本的Java安全套接字扩展(JSSE)兼容而存在的。新应用程序应该使用位于java.security.cert
中的标准Java SE证书类。
- 自JDK版本:
- 1.4
- 参见:
-
Constructor Summary
ConstructorDescription已弃用,将来会移除: 此API元素可能会在将来的版本中被移除。构造一个没有详细消息的CertificateNotYetValidException。CertificateNotYetValidException
(String message) 已弃用,将来会移除: 此API元素可能会在将来的版本中被移除。构造一个带有指定详细消息的CertificateNotYetValidException。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CertificateNotYetValidException
public CertificateNotYetValidException()Deprecated, for removal: This API element is subject to removal in a future version.构造一个没有详细消息的CertificateNotYetValidException。详细消息是描述此特定异常的字符串。 -
CertificateNotYetValidException
Deprecated, for removal: This API element is subject to removal in a future version.构造一个带有指定详细消息的CertificateNotYetValidException。详细消息是描述此特定异常的字符串。- 参数:
-
message
- 详细消息。
-
java.security.cert
instead.