mirror of https://github.com/Radarr/Radarr
15 lines
341 B
C#
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|