Throw a custom error for trakt so it doesn't die in LINQ

This commit is contained in:
Mark McDowall
2013-08-06 23:16:28 -07:00
parent 7de7b7d599
commit c7d3a07219
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.MetadataSource.Trakt
{
public class TraktCommunicationException : Exception
{
public TraktCommunicationException(string message, Exception innerException) : base(message, innerException)
{
}
}
}