1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00
Files
Radarr/src/NzbDrone.Core/Notifications/Webhook/WebhookException.cs
T
2019-12-27 20:40:13 -05:00

19 lines
431 B
C#

using System;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookException : NzbDroneException
{
public WebhookException(string message)
: base(message)
{
}
public WebhookException(string message, Exception innerException, params object[] args)
: base(message, innerException, args)
{
}
}
}