PkixCertPathBuilderException.cs 785 B

123456789101112131415161718192021222324252627282930313233343536
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.Runtime.Serialization;
  5. using BestHTTP.SecureProtocol.Org.BouncyCastle.Security;
  6. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Pkix
  7. {
  8. [Serializable]
  9. public class PkixCertPathBuilderException
  10. : GeneralSecurityException
  11. {
  12. public PkixCertPathBuilderException()
  13. : base()
  14. {
  15. }
  16. public PkixCertPathBuilderException(string message)
  17. : base(message)
  18. {
  19. }
  20. public PkixCertPathBuilderException(string message, Exception innerException)
  21. : base(message, innerException)
  22. {
  23. }
  24. protected PkixCertPathBuilderException(SerializationInfo info, StreamingContext context)
  25. : base(info, context)
  26. {
  27. }
  28. }
  29. }
  30. #pragma warning restore
  31. #endif