CertificateNotYetValidException.cs 564 B

123456789101112131415161718
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Security.Certificates
  4. {
  5. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || NETFX_CORE || PORTABLE)
  6. [Serializable]
  7. #endif
  8. public class CertificateNotYetValidException : CertificateException
  9. {
  10. public CertificateNotYetValidException() : base() { }
  11. public CertificateNotYetValidException(string message) : base(message) { }
  12. public CertificateNotYetValidException(string message, Exception exception) : base(message, exception) { }
  13. }
  14. }
  15. #endif