mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-28 23:07:13 -04:00
b82e830e86
Closes #301 New: Twitter Notifications
25 lines
647 B
C#
25 lines
647 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Notifications.Twitter
|
|
{
|
|
public class TwitterException : NzbDroneException
|
|
{
|
|
public TwitterException(string message, params object[] args) : base(message, args)
|
|
{
|
|
}
|
|
|
|
public TwitterException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public TwitterException(string message, Exception innerException, params object[] args) : base(message, innerException, args)
|
|
{
|
|
}
|
|
|
|
public TwitterException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|