NoSuchAlgorithmException.cs 595 B

12345678910111213141516171819
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Security
  5. {
  6. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE || NETFX_CORE)
  7. [Serializable]
  8. #endif
  9. public class NoSuchAlgorithmException : GeneralSecurityException
  10. {
  11. public NoSuchAlgorithmException() : base() {}
  12. public NoSuchAlgorithmException(string message) : base(message) {}
  13. public NoSuchAlgorithmException(string message, Exception exception) : base(message, exception) {}
  14. }
  15. }
  16. #pragma warning restore
  17. #endif