mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
Better error message when error is received from SABnzbd
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using NzbDrone.Common.Exceptions;
|
||||
|
||||
namespace NzbDrone.Core.Download.Clients
|
||||
{
|
||||
public class DownloadClientException : NzbDroneException
|
||||
{
|
||||
public DownloadClientException(string message, params object[] args) : base(message, args)
|
||||
{
|
||||
}
|
||||
|
||||
public DownloadClientException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user