mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-31 18:35:32 -04:00
13 lines
274 B
C#
13 lines
274 B
C#
using Nancy;
|
|
using Lidarr.Http.Exceptions;
|
|
|
|
namespace Lidarr.Http.REST
|
|
{
|
|
public class BadRequestException : ApiException
|
|
{
|
|
public BadRequestException(object content = null)
|
|
: base(HttpStatusCode.BadRequest, content)
|
|
{
|
|
}
|
|
}
|
|
} |