mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-22 22:16:13 -04:00
committed by
GitHub
parent
bdfdd28d6a
commit
93e3e92bba
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user