1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Improved PushBullet implementation (v2 API, multiple devices, channels)

New: PushBullet supports multiple devices
New: PushBullet channels

Closes #641
This commit is contained in:
Mark McDowall
2015-06-28 01:50:19 -07:00
parent 120be567d3
commit 77e9493ccf
12 changed files with 312 additions and 37 deletions
@@ -0,0 +1,16 @@
using System;
using NzbDrone.Common.Exceptions;
namespace NzbDrone.Core.Notifications.PushBullet
{
public class PushBulletException : NzbDroneException
{
public PushBulletException(string message) : base(message)
{
}
public PushBulletException(string message, Exception innerException, params object[] args) : base(message, innerException, args)
{
}
}
}