PkcsException.cs 569 B

12345678910111213141516171819202122232425
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs
  5. {
  6. /// <summary>
  7. /// Base exception for PKCS related issues.
  8. /// </summary>
  9. public class PkcsException
  10. : Exception
  11. {
  12. public PkcsException(string message)
  13. : base(message)
  14. {
  15. }
  16. public PkcsException(string message, Exception underlying)
  17. : base(message, underlying)
  18. {
  19. }
  20. }
  21. }
  22. #pragma warning restore
  23. #endif