PkcsIOException.cs 586 B

1234567891011121314151617181920212223
  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.Pkcs
  6. {
  7. /// <summary>
  8. /// Base exception for parsing related issues in the PKCS namespace.
  9. /// </summary>
  10. public class PkcsIOException: IOException
  11. {
  12. public PkcsIOException(String message) : base(message)
  13. {
  14. }
  15. public PkcsIOException(String message, Exception underlying) : base(message, underlying)
  16. {
  17. }
  18. }
  19. }
  20. #pragma warning restore
  21. #endif