You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Download/Clients/NzbVortex/NzbVortexNotLoggedInExcepti...

33 lines
851 B

using System;
namespace NzbDrone.Core.Download.Clients.NzbVortex
{
public class NzbVortexNotLoggedInException : DownloadClientException
{
public NzbVortexNotLoggedInException()
: this("Authentication is required")
{
}
public NzbVortexNotLoggedInException(string message, params object[] args)
: base(message, args)
{
}
public NzbVortexNotLoggedInException(string message)
: base(message)
{
}
public NzbVortexNotLoggedInException(string message, Exception innerException, params object[] args)
: base(message, innerException, args)
{
}
public NzbVortexNotLoggedInException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}