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