mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
19 lines
431 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|