GeneralSecurityException.cs 549 B

123456789101112131415161718192021222324252627282930313233
  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 GeneralSecurityException
  9. : Exception
  10. {
  11. public GeneralSecurityException()
  12. : base()
  13. {
  14. }
  15. public GeneralSecurityException(
  16. string message)
  17. : base(message)
  18. {
  19. }
  20. public GeneralSecurityException(
  21. string message,
  22. Exception exception)
  23. : base(message, exception)
  24. {
  25. }
  26. }
  27. }
  28. #endif