Asn1Exception.cs 519 B

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