mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-15 21:05:48 -04:00
14 lines
295 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|