mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
dca00db317
* Added: Ntfy provider for notifications. * Changed: Clean up of validation and fields for ntfy * Fixed: Unused title setting, and spelling issue.
19 lines
419 B
C#
19 lines
419 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Ntfy
|
|
{
|
|
public class NtfyException : NzbDroneException
|
|
{
|
|
public NtfyException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public NtfyException(string message, Exception innerException, params object[] args)
|
|
: base(message, innerException, args)
|
|
{
|
|
}
|
|
}
|
|
}
|