mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
New: Backend changes for new UI
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Nancy;
|
||||
using Radarr.Http.Exceptions;
|
||||
|
||||
namespace Radarr.Http.REST
|
||||
{
|
||||
public class MethodNotAllowedException : ApiException
|
||||
{
|
||||
public MethodNotAllowedException(object content = null)
|
||||
: base(HttpStatusCode.MethodNotAllowed, content)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user