CertificateEncodingException.cs 590 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 CertificateEncodingException : CertificateException
  10. {
  11. public CertificateEncodingException() : base() { }
  12. public CertificateEncodingException(string msg) : base(msg) { }
  13. public CertificateEncodingException(string msg, Exception e) : base(msg, e) { }
  14. }
  15. }
  16. #pragma warning restore
  17. #endif