Fixed: Do not prevent adding of indexer when API request limit was reached

This commit is contained in:
Mark McDowall
2014-03-21 07:59:42 -07:00
parent 0cad77303d
commit 357726ed09
4 changed files with 28 additions and 1 deletions
@@ -0,0 +1,17 @@
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Indexers.Exceptions
{
public class RequestLimitReachedException : NzbDroneException
{
public RequestLimitReachedException(string message, params object[] args)
: base(message, args)
{
}
public RequestLimitReachedException(string message)
: base(message)
{
}
}
}