1. /*
  2. * @(#)CertificateNotYetValidException.java 1.6 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.security.cert;
  11. /**
  12. * Certificate is not yet valid exception. This is thrown whenever
  13. * the current <code>Date</code> or the specified <code>Date</code>
  14. * is before the <code>notBefore</code> date/time in the Certificate
  15. * validity period.
  16. *
  17. * @author Hemma Prafullchandra
  18. * 1.6
  19. */
  20. public class CertificateNotYetValidException extends CertificateException {
  21. /**
  22. * Constructs a CertificateNotYetValidException with no detail message. A
  23. * detail message is a String that describes this particular
  24. * exception.
  25. */
  26. public CertificateNotYetValidException() {
  27. super();
  28. }
  29. /**
  30. * Constructs a CertificateNotYetValidException with the specified detail
  31. * message. A detail message is a String that describes this
  32. * particular exception.
  33. *
  34. * @param message the detail message.
  35. */
  36. public CertificateNotYetValidException(String message) {
  37. super(message);
  38. }
  39. }