mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
16 lines
404 B
C#
16 lines
404 B
C#
using System.Net;
|
|
|
|
namespace NzbDrone.Core.MetadataSource.Trakt
|
|
{
|
|
public class TraktException : NzbDroneClientException
|
|
{
|
|
public TraktException(string message) : base(HttpStatusCode.ServiceUnavailable, message)
|
|
{
|
|
}
|
|
|
|
public TraktException(string message, params object[] args) : base(HttpStatusCode.ServiceUnavailable, message, args)
|
|
{
|
|
}
|
|
}
|
|
}
|