ServiceStack added

This commit is contained in:
Mark McDowall 2012-11-02 00:35:49 -07:00
parent a26840fb60
commit 8f0d22e47d
65 changed files with 12384 additions and 5 deletions

View 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)
{
}
}
}