CMSStreamException.cs 605 B

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