mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 16:52:04 +02:00
16 lines
281 B
C#
16 lines
281 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Notifications.Prowl
|
|
{
|
|
public class InvalidApiKeyException : Exception
|
|
{
|
|
public InvalidApiKeyException()
|
|
{
|
|
}
|
|
|
|
public InvalidApiKeyException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|