1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 21:12:56 +01:00
Radarr/NzbDrone.Core/Notifications/Pushover/InvalidResponseException.cs
2013-07-25 00:24:09 -07:00

16 lines
290 B
C#

using System;
namespace NzbDrone.Core.Notifications.Pushover
{
public class InvalidResponseException : Exception
{
public InvalidResponseException()
{
}
public InvalidResponseException(string message) : base(message)
{
}
}
}