PemGenerationException.cs 619 B

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