You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
436 B
17 lines
436 B
using System.Net;
|
|
using NzbDrone.Core.Exceptions;
|
|
|
|
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)
|
|
{
|
|
}
|
|
}
|
|
}
|