mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01: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)
|
|
{
|
|
}
|
|
}
|
|
}
|