Files
Prowlarr-Prowlarr/NzbDrone.Core/MetadataSource/Trakt/TraktCommunicationException.cs
2013-08-06 23:16:28 -07:00

15 lines
341 B
C#

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