Asn1ParsingException.cs 544 B

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