Added pushover notifications

This commit is contained in:
Mark McDowall 2013-07-25 00:24:09 -07:00
commit e96e1b10db
7 changed files with 159 additions and 0 deletions

View file

@ -0,0 +1,15 @@
using System;
namespace NzbDrone.Core.Notifications.Pushover
{
public class InvalidResponseException : Exception
{
public InvalidResponseException()
{
}
public InvalidResponseException(string message) : base(message)
{
}
}
}