PkixNameConstraintValidatorException.cs 491 B

1234567891011121314151617181920
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Pkix
  5. {
  6. #if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE || NETFX_CORE)
  7. [Serializable]
  8. #endif
  9. public class PkixNameConstraintValidatorException
  10. : Exception
  11. {
  12. public PkixNameConstraintValidatorException(String msg)
  13. : base(msg)
  14. {
  15. }
  16. }
  17. }
  18. #pragma warning restore
  19. #endif