mirror of https://github.com/Sonarr/Sonarr
17 lines
492 B
C#
17 lines
492 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 + "'.", innerException, WebExceptionStatus.SecureChannelFailure, innerException.Response)
|
|
{
|
|
}
|
|
}
|
|
}
|