mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 04:59:35 -07:00
fix modifiers for various classes
Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
This commit is contained in:
parent
bc12f5cf9f
commit
e8b1494b16
5 changed files with 8 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
||||||
{
|
{
|
||||||
internal class NzbVortexAuthenticationException : DownloadClientException
|
public class NzbVortexAuthenticationException : DownloadClientException
|
||||||
{
|
{
|
||||||
public NzbVortexAuthenticationException(string message, params object[] args)
|
public NzbVortexAuthenticationException(string message, params object[] args)
|
||||||
: base(message, args)
|
: base(message, args)
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
namespace NzbDrone.Core.Download.Clients.NzbVortex
|
||||||
{
|
{
|
||||||
internal class NzbVortexNotLoggedInException : DownloadClientException
|
public class NzbVortexNotLoggedInException : DownloadClientException
|
||||||
{
|
{
|
||||||
public NzbVortexNotLoggedInException()
|
public NzbVortexNotLoggedInException()
|
||||||
: this("Authentication is required")
|
: this("Authentication is required")
|
||||||
|
|
|
@ -3,7 +3,7 @@ using NzbDrone.Common.Exceptions;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Notifications.Discord
|
namespace NzbDrone.Core.Notifications.Discord
|
||||||
{
|
{
|
||||||
internal class DiscordException : NzbDroneException
|
public class DiscordException : NzbDroneException
|
||||||
{
|
{
|
||||||
public DiscordException(string message)
|
public DiscordException(string message)
|
||||||
: base(message)
|
: base(message)
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
using System;
|
using System;
|
||||||
using NzbDrone.Common.Exceptions;
|
using NzbDrone.Common.Exceptions;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Notifications.Slack
|
namespace NzbDrone.Core.Notifications.Slack
|
||||||
{
|
{
|
||||||
internal class SlackExeption : NzbDroneException
|
public class SlackExeption : NzbDroneException
|
||||||
{
|
{
|
||||||
public SlackExeption(string message)
|
public SlackExeption(string message)
|
||||||
: base(message)
|
: base(message)
|
||||||
|
|
|
@ -6,7 +6,7 @@ using NzbDrone.Core.Validation;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Notifications.Twitter
|
namespace NzbDrone.Core.Notifications.Twitter
|
||||||
{
|
{
|
||||||
internal class Twitter : NotificationBase<TwitterSettings>
|
public class Twitter : NotificationBase<TwitterSettings>
|
||||||
{
|
{
|
||||||
private readonly ITwitterService _twitterService;
|
private readonly ITwitterService _twitterService;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue