mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
a1783a53a9
download might still not work.
14 lines
295 B
C#
14 lines
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)
|
|
{
|
|
}
|
|
}
|
|
} |