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