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.
Prowlarr/src/NzbDrone.Common/Exceptions/ProwlarrStartupException.cs

38 lines
1.1 KiB

using System;
namespace NzbDrone.Common.Exceptions
{
public class ProwlarrStartupException : NzbDroneException
{
public ProwlarrStartupException(string message, params object[] args)
: base("Prowlarr failed to start: " + string.Format(message, args))
{
}
public ProwlarrStartupException(string message)
: base("Prowlarr failed to start: " + message)
{
}
public ProwlarrStartupException()
: base("Prowlarr failed to start")
{
}
public ProwlarrStartupException(Exception innerException, string message, params object[] args)
: base("Prowlarr failed to start: " + string.Format(message, args), innerException)
{
}
public ProwlarrStartupException(Exception innerException, string message)
: base("Prowlarr failed to start: " + message, innerException)
{
}
public ProwlarrStartupException(Exception innerException)
: base("Prowlarr failed to start: " + innerException.Message)
{
}
}
}