jdk/src/share/classes/java/security/cert/CertificateExpiredException.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 Expired Exception. This is thrown whenever the current
    29  * Certificate Expired Exception. This is thrown whenever the current
    30  * <code>Date</code> or the specified <code>Date</code> is after the
    30  * {@code Date} or the specified {@code Date} is after the
    31  * <code>notAfter</code> date/time specified in the validity period
    31  * {@code notAfter} date/time specified in the validity period
    32  * of the certificate.
    32  * of the certificate.
    33  *
    33  *
    34  * @author Hemma Prafullchandra
    34  * @author Hemma Prafullchandra
    35  */
    35  */
    36 public class CertificateExpiredException extends CertificateException {
    36 public class CertificateExpiredException extends CertificateException {