Files
Prowlarr-Prowlarr/src/Prowlarr.Http/REST/MethodNotAllowedException.cs
ta264 dbdc527f2e New: Use ASP.NET Core instead of Nancy
(cherry picked from commit 58ddbcd77e17ef95ecfad4b746084ee9326116f3)
2021-03-16 19:29:49 +00:00

14 lines
299 B
C#

using System.Net;
using Prowlarr.Http.Exceptions;
namespace Prowlarr.Http.REST
{
public class MethodNotAllowedException : ApiException
{
public MethodNotAllowedException(object content = null)
: base(HttpStatusCode.MethodNotAllowed, content)
{
}
}
}