mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-29 02:55:38 +00:00
15 lines
290 B
C#
15 lines
290 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Notifications.Pushover
|
|
{
|
|
public class InvalidResponseException : Exception
|
|
{
|
|
public InvalidResponseException()
|
|
{
|
|
}
|
|
|
|
public InvalidResponseException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|