mirror of
https://github.com/Readarr/Readarr
synced 2025-12-28 19:22:57 +01:00
14 lines
No EOL
295 B
C#
14 lines
No EOL
295 B
C#
using System;
|
|
using Nancy;
|
|
using NzbDrone.Api.ErrorManagement;
|
|
|
|
namespace NzbDrone.Api.REST
|
|
{
|
|
public class BadRequestException : ApiException
|
|
{
|
|
public BadRequestException(object content = null)
|
|
: base(HttpStatusCode.BadRequest, content)
|
|
{
|
|
}
|
|
}
|
|
} |