jdk/src/share/classes/java/security/cert/CertificateNotYetValidException.java
changeset 18551 882a3948c6e6
parent 5506 202f599c92aa
equal deleted inserted replaced
18550:6d0f51c99930 18551:882a3948c6e6
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2003, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    25 
    25 
    26 package java.security.cert;
    26 package java.security.cert;
    27 
    27 
    28 /**
    28 /**
    29  * Certificate is not yet valid exception. This is thrown whenever
    29  * Certificate is not yet valid exception. This is thrown whenever
    30  * the current <code>Date</code> or the specified <code>Date</code>
    30  * the current {@code Date} or the specified {@code Date}
    31  * is before the <code>notBefore</code> date/time in the Certificate
    31  * is before the {@code notBefore} date/time in the Certificate
    32  * validity period.
    32  * validity period.
    33  *
    33  *
    34  * @author Hemma Prafullchandra
    34  * @author Hemma Prafullchandra
    35  */
    35  */
    36 public class CertificateNotYetValidException extends CertificateException {
    36 public class CertificateNotYetValidException extends CertificateException {