mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
ServiceStack added
This commit is contained in:
parent
a26840fb60
commit
8f0d22e47d
65 changed files with 12384 additions and 5 deletions
18
NzbDrone.Api/Exceptions/InvalidApiKeyException.cs
Normal file
18
NzbDrone.Api/Exceptions/InvalidApiKeyException.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Api.Exceptions
|
||||
{
|
||||
public class InvalidApiKeyException : Exception
|
||||
{
|
||||
public InvalidApiKeyException()
|
||||
{
|
||||
}
|
||||
|
||||
public InvalidApiKeyException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue