UnsupportedPacketVersionException.cs 388 B

1234567891011121314151617
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Bcpg
  5. {
  6. public class UnsupportedPacketVersionException
  7. : Exception
  8. {
  9. public UnsupportedPacketVersionException(string msg)
  10. : base(msg)
  11. {
  12. }
  13. }
  14. }
  15. #pragma warning restore
  16. #endif