mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
93e3e92bba
Closes #3341
19 lines
435 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|