mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
18 lines
448 B
C#
18 lines
448 B
C#
using NzbDrone.Core.Indexers.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Indexers.Newznab
|
|
{
|
|
public class NewznabException : IndexerException
|
|
{
|
|
public NewznabException(IndexerResponse response, string message, params object[] args)
|
|
: base(response, message, args)
|
|
{
|
|
}
|
|
|
|
public NewznabException(IndexerResponse response, string message)
|
|
: base(response, message)
|
|
{
|
|
}
|
|
}
|
|
}
|