mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
17 lines
297 B
C#
17 lines
297 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Notifications.Gotify
|
|
{
|
|
public class InvalidResponseException : Exception
|
|
{
|
|
public InvalidResponseException()
|
|
{
|
|
}
|
|
|
|
public InvalidResponseException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|