mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 08:47:59 +02:00
11 lines
236 B
C#
11 lines
236 B
C#
namespace NzbDrone.Core.Download.Clients.Transmission
|
|
{
|
|
public class TransmissionException : DownloadClientException
|
|
{
|
|
public TransmissionException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|