mirror of
https://github.com/Radarr/Radarr
synced 2026-01-03 22:25:00 +01:00
18 lines
428 B
C#
18 lines
428 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Mailgun
|
|
{
|
|
public class MailgunException : NzbDroneException
|
|
{
|
|
public MailgunException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public MailgunException(string message, Exception innerException, params object[] args)
|
|
: base(message, innerException, args)
|
|
{
|
|
}
|
|
}
|
|
}
|