mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-29 21:39:34 +02:00
16 lines
367 B
C#
16 lines
367 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|