mirror of
https://github.com/Readarr/Readarr
synced 2026-04-20 20:01:09 +02:00
18 lines
435 B
C#
18 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)
|
|
{
|
|
}
|
|
}
|
|
}
|