New: Added support for Gotify notifications (#3474)

* Added support for Gotify notifications

* Use string interpolation to build url

* Adapt changes by markus101 over at Sonarr

* Remove blank line

Fixes #3472
This commit is contained in:
stephanrenggli
2019-05-02 12:49:21 +02:00
committed by Leonardo Galli
parent f8c009a348
commit 9985554dcb
6 changed files with 159 additions and 0 deletions
@@ -0,0 +1,15 @@
using System;
namespace NzbDrone.Core.Notifications.Gotify
{
public class InvalidResponseException : Exception
{
public InvalidResponseException()
{
}
public InvalidResponseException(string message) : base(message)
{
}
}
}