Radarr/src/Radarr.Http/REST/MethodNotAllowedException.cs

14 lines
295 B
C#

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