Log Goodreads connection failures with more info.

(cherry picked from commit 6672650b6b5e152e82fb3ad38a0a158d66c0b83d)
This commit is contained in:
Taloth Saldono
2021-03-10 21:43:43 +01:00
committed by Bogdan
parent 22f92150c3
commit 18253a298e
4 changed files with 32 additions and 6 deletions
@@ -1,3 +1,4 @@
using System;
using System.Net;
using NzbDrone.Core.Exceptions;
@@ -14,5 +15,10 @@ namespace NzbDrone.Core.MetadataSource.BookInfo
: base(HttpStatusCode.ServiceUnavailable, message, args)
{
}
public BookInfoException(string message, Exception innerException, params object[] args)
: base(HttpStatusCode.ServiceUnavailable, message, innerException, args)
{
}
}
}