mirror of https://github.com/lidarr/Lidarr
16 lines
290 B
C#
16 lines
290 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Notifications.Pushover
|
|||
|
{
|
|||
|
public class InvalidResponseException : Exception
|
|||
|
{
|
|||
|
public InvalidResponseException()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public InvalidResponseException(string message) : base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|