Files
Prowlarr/src/NzbDrone.Core/Indexers/Exceptions/IndexerException.cs
T
2014-10-13 14:11:35 -07:00

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)
{
}
}
}