mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-03 18:26:42 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|