CertificateParsingException.cs 618 B

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