mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
17 lines
362 B
C#
17 lines
362 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Indexers.Exceptions
|
|
{
|
|
public class IndexerException : NzbDroneException
|
|
{
|
|
public IndexerException(string message, params object[] args)
|
|
: base(message, args)
|
|
{
|
|
}
|
|
}
|
|
}
|