mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-04 06:38:28 +02: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)
|
|
{
|
|
}
|
|
}
|
|
} |