Radarr/src/NzbDrone.Core/Notifications/SendGrid/SendGridException.cs
2020-04-13 00:31:13 -04:00

18 lines
432 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)
{
}
}
}