mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 13:02:47 +01:00
13 lines
281 B
C#
13 lines
281 B
C#
using Nancy;
|
|
using NzbDrone.Api.ErrorManagement;
|
|
|
|
namespace NzbDrone.Api.REST
|
|
{
|
|
public class BadRequestException : ApiException
|
|
{
|
|
public BadRequestException(object content = null)
|
|
: base(HttpStatusCode.BadRequest, content)
|
|
{
|
|
}
|
|
}
|
|
} |