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

14 lines
295 B
C#
Raw Permalink Normal View History

2021-10-21 20:04:19 +00:00
using System.Net;
2018-11-23 07:03:32 +00:00
using Radarr.Http.Exceptions;
2018-11-23 07:03:32 +00:00
namespace Radarr.Http.REST
{
public class MethodNotAllowedException : ApiException
{
public MethodNotAllowedException(object content = null)
: base(HttpStatusCode.MethodNotAllowed, content)
{
}
}
}