mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-18 21:29:46 +00:00
ba01b636b9
fixes #2089
18 lines
533 B
C#
18 lines
533 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Common.Http
|
|
{
|
|
public class TlsFailureException : WebException
|
|
{
|
|
public TlsFailureException(WebRequest request, WebException innerException)
|
|
: base("Failed to establish secure https connection to '" + request.RequestUri + "', libcurl fallback might be unavailable.", innerException, WebExceptionStatus.SecureChannelFailure, innerException.Response)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|