mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
400fa4a960
Co-Authored-By: Taloth <Taloth@users.noreply.github.com> Signed-off-by: Robin Dadswell <robin@dadswell.email>
19 lines
417 B
C#
19 lines
417 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Slack
|
|
{
|
|
public class SlackExeption : NzbDroneException
|
|
{
|
|
public SlackExeption(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public SlackExeption(string message, Exception innerException, params object[] args)
|
|
: base(message, innerException, args)
|
|
{
|
|
}
|
|
}
|
|
}
|