mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
18253a298e
(cherry picked from commit 6672650b6b5e152e82fb3ad38a0a158d66c0b83d)
25 lines
694 B
C#
25 lines
694 B
C#
using System;
|
|
using System.Net;
|
|
using NzbDrone.Core.Exceptions;
|
|
|
|
namespace NzbDrone.Core.MetadataSource.Goodreads
|
|
{
|
|
public class GoodreadsException : NzbDroneClientException
|
|
{
|
|
public GoodreadsException(string message)
|
|
: base(HttpStatusCode.ServiceUnavailable, message)
|
|
{
|
|
}
|
|
|
|
public GoodreadsException(string message, params object[] args)
|
|
: base(HttpStatusCode.ServiceUnavailable, message, args)
|
|
{
|
|
}
|
|
|
|
public GoodreadsException(string message, Exception innerException, params object[] args)
|
|
: base(HttpStatusCode.ServiceUnavailable, message, innerException, args)
|
|
{
|
|
}
|
|
}
|
|
}
|