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