NoSuchAlgorithmException.cs 622 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. [Obsolete("Never thrown")]
  7. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE || NETFX_CORE)
  8. [Serializable]
  9. #endif
  10. public class NoSuchAlgorithmException : GeneralSecurityException
  11. {
  12. public NoSuchAlgorithmException() : base() {}
  13. public NoSuchAlgorithmException(string message) : base(message) {}
  14. public NoSuchAlgorithmException(string message, Exception exception) : base(message, exception) {}
  15. }
  16. }
  17. #pragma warning restore
  18. #endif