OCSPException.cs 543 B

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