1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-01 01:16:14 +00:00
Radarr/NzbDrone.Api/REST/BadRequestException.cs

13 lines
281 B
C#
Raw Normal View History

2013-07-19 03:47:55 +00:00
using Nancy;
using NzbDrone.Api.ErrorManagement;
namespace NzbDrone.Api.REST
{
public class BadRequestException : ApiException
{
public BadRequestException(object content = null)
: base(HttpStatusCode.BadRequest, content)
{
}
}
}