mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
11 lines
248 B
C#
11 lines
248 B
C#
namespace NzbDrone.Core.Download.Clients.FreeboxDownload
|
|
{
|
|
public class FreeboxDownloadException : DownloadClientException
|
|
{
|
|
public FreeboxDownloadException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|