1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 20:12:41 +02:00
Radarr/src/Radarr.Http/REST/NotFoundException.cs
2019-12-27 20:40:13 -05:00

14 lines
269 B
C#

using Nancy;
using Radarr.Http.Exceptions;
namespace Radarr.Http.REST
{
public class NotFoundException : ApiException
{
public NotFoundException(object content = null)
: base(HttpStatusCode.NotFound, content)
{
}
}
}