1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/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)
{
}
}
}