mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Backend Updates from Sonarr
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com> Co-Authored-By: taloth <taloth@users.noreply.github.com>
This commit is contained in:
@@ -1,7 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Common.Exceptions
|
||||
{
|
||||
@@ -10,19 +7,16 @@ namespace NzbDrone.Common.Exceptions
|
||||
public RadarrStartupException(string message, params object[] args)
|
||||
: base("Radarr failed to start: " + string.Format(message, args))
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public RadarrStartupException(string message)
|
||||
: base("Radarr failed to start: " + message)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public RadarrStartupException()
|
||||
: base("Radarr failed to start")
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public RadarrStartupException(Exception innerException, string message, params object[] args)
|
||||
@@ -38,7 +32,6 @@ namespace NzbDrone.Common.Exceptions
|
||||
public RadarrStartupException(Exception innerException)
|
||||
: base("Radarr failed to start: " + innerException.Message)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user