InvalidKeyException.cs 495 B

123456789101112131415161718
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Security
  4. {
  5. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || NETFX_CORE || PORTABLE)
  6. [Serializable]
  7. #endif
  8. public class InvalidKeyException : KeyException
  9. {
  10. public InvalidKeyException() : base() { }
  11. public InvalidKeyException(string message) : base(message) { }
  12. public InvalidKeyException(string message, Exception exception) : base(message, exception) { }
  13. }
  14. }
  15. #endif