CMSAttributeTableGenerationException.cs 625 B

1234567891011121314151617181920212223242526272829303132
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Cms
  5. {
  6. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE || NETFX_CORE)
  7. [Serializable]
  8. #endif
  9. public class CmsAttributeTableGenerationException
  10. : CmsException
  11. {
  12. public CmsAttributeTableGenerationException()
  13. {
  14. }
  15. public CmsAttributeTableGenerationException(
  16. string name)
  17. : base(name)
  18. {
  19. }
  20. public CmsAttributeTableGenerationException(
  21. string name,
  22. Exception e)
  23. : base(name, e)
  24. {
  25. }
  26. }
  27. }
  28. #pragma warning restore
  29. #endif