removed dead code

This commit is contained in:
Keivan Beigi
2014-10-13 14:11:35 -07:00
parent 907023ca10
commit 28f7e256b2
15 changed files with 17 additions and 69 deletions
@@ -8,21 +8,9 @@ namespace NzbDrone.Core.Indexers.Exceptions
{
public class IndexerException : NzbDroneException
{
private readonly IndexerResponse _indexerResponse;
public IndexerException(IndexerResponse response, string message, params object[] args)
public IndexerException(string message, params object[] args)
: base(message, args)
{
}
public IndexerException(IndexerResponse response, string message)
: base(message)
{
}
public IndexerResponse Response
{
get { return _indexerResponse; }
}
}
}