1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00
Files
Sonarr/src/NzbDrone.Core/Notifications/SendGrid/SendGridException.cs
T
Skyler Mäntysaari 93e3e92bba New: SendGrid Notifications
Closes #3341
2020-05-20 11:22:05 -07:00

19 lines
435 B
C#

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)
{
}
}
}