CmpException.cs 539 B

1234567891011121314151617181920212223242526
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Cmp
  5. {
  6. public class CmpException
  7. : Exception
  8. {
  9. public CmpException()
  10. {
  11. }
  12. public CmpException(string message)
  13. : base(message)
  14. {
  15. }
  16. public CmpException(string message, Exception innerException)
  17. : base(message, innerException)
  18. {
  19. }
  20. }
  21. }
  22. #pragma warning restore
  23. #endif