mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07: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)
|
|
{
|
|
}
|
|
}
|
|
}
|