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.
25 lines
684 B
25 lines
684 B
using System;
|
|
using System.Net;
|
|
using NzbDrone.Core.Exceptions;
|
|
|
|
namespace NzbDrone.Core.MetadataSource.SkyHook
|
|
{
|
|
public class SkyHookException : NzbDroneClientException
|
|
{
|
|
public SkyHookException(string message)
|
|
: base(HttpStatusCode.ServiceUnavailable, message)
|
|
{
|
|
}
|
|
|
|
public SkyHookException(string message, params object[] args)
|
|
: base(HttpStatusCode.ServiceUnavailable, message, args)
|
|
{
|
|
}
|
|
|
|
public SkyHookException(string message, Exception innerException, params object[] args)
|
|
: base(HttpStatusCode.ServiceUnavailable, message, innerException, args)
|
|
{
|
|
}
|
|
}
|
|
}
|