mirror of
https://github.com/Readarr/Readarr
synced 2026-04-20 11:51:06 +02:00
New: Adding multiple series will queue them instead of running all at once New: Slower scheduled tasks won't be block others from running
29 lines
804 B
C#
29 lines
804 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Messaging.Commands
|
|
{
|
|
public class CommandFailedException : NzbDroneException
|
|
{
|
|
public CommandFailedException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
|
|
public CommandFailedException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public CommandFailedException(string message, Exception innerException, params object[] args) : base(message, innerException, args)
|
|
{
|
|
}
|
|
|
|
public CommandFailedException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
public CommandFailedException(Exception innerException)
|
|
: base("Failed", innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|