New: Add support for native Freebox Download Client

This commit is contained in:
Colin Gagnaire
2022-12-17 03:37:21 +01:00
committed by Qstick
parent 38ab533272
commit 5b82decc31
10 changed files with 782 additions and 0 deletions
@@ -0,0 +1,10 @@
namespace NzbDrone.Core.Download.Clients.FreeboxDownload
{
public class FreeboxDownloadException : DownloadClientException
{
public FreeboxDownloadException(string message)
: base(message)
{
}
}
}