TlsException.cs 403 B

123456789101112131415161718
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. using System;
  4. using System.IO;
  5. namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
  6. {
  7. public class TlsException
  8. : IOException
  9. {
  10. public TlsException(string message, Exception cause)
  11. : base(message, cause)
  12. {
  13. }
  14. }
  15. }
  16. #pragma warning restore
  17. #endif