mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-01-01 02:26:01 +01:00
14 lines
299 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|