1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-15 21:05:48 -04:00
Files
Radarr/src/Radarr.Http/REST/MethodNotAllowedException.cs
2021-10-25 13:45:44 -04:00

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)
{
}
}
}