Lidarr/src/Lidarr.Http/REST/MethodNotAllowedException.cs

14 lines
295 B
C#

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