mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 12:42:25 +01:00
12 lines
406 B
C#
12 lines
406 B
C#
using System.Net;
|
|
|
|
namespace NzbDrone.Common.Http
|
|
{
|
|
public class TlsFailureException : WebException
|
|
{
|
|
public TlsFailureException(WebRequest request, WebException innerException)
|
|
: base("Failed to establish secure https connection to '" + request.RequestUri + "'.", innerException, WebExceptionStatus.SecureChannelFailure, innerException.Response)
|
|
{
|
|
}
|
|
}
|
|
}
|