1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00

New: Added Torznab as generic indexer.

This commit is contained in:
Taloth Saldono
2015-03-12 21:01:54 +01:00
parent 37e4a06b5d
commit c7470a426a
13 changed files with 1005 additions and 0 deletions
@@ -0,0 +1,17 @@
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Indexers.Exceptions
{
public class UnsupportedFeedException : NzbDroneException
{
public UnsupportedFeedException(string message, params object[] args)
: base(message, args)
{
}
public UnsupportedFeedException(string message)
: base(message)
{
}
}
}