PkixCertPathBuilderException.cs 766 B

1234567891011121314151617181920212223242526
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Pkix
  6. {
  7. /// <summary>
  8. /// Summary description for PkixCertPathBuilderException.
  9. /// </summary>
  10. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE || NETFX_CORE)
  11. [Serializable]
  12. #endif
  13. public class PkixCertPathBuilderException : GeneralSecurityException
  14. {
  15. public PkixCertPathBuilderException() : base() { }
  16. public PkixCertPathBuilderException(string message) : base(message) { }
  17. public PkixCertPathBuilderException(string message, Exception exception) : base(message, exception) { }
  18. }
  19. }
  20. #pragma warning restore
  21. #endif