1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

New: SendGrid Notifications

Closes #3341
This commit is contained in:
Skyler Mäntysaari
2020-05-20 21:22:05 +03:00
committed by GitHub
parent bdfdd28d6a
commit 93e3e92bba
5 changed files with 254 additions and 0 deletions
@@ -0,0 +1,18 @@
using System;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.SendGrid
{
public class SendGridException : NzbDroneException
{
public SendGridException(string message)
: base(message)
{
}
public SendGridException(string message, Exception innerException, params object[] args)
: base(message, innerException, args)
{
}
}
}