mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-29 11:16:19 +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)
|
|
{
|
|
}
|
|
}
|
|
}
|