Files
Readarr/src/Readarr.Http/REST/NotFoundException.cs
2020-02-29 16:58:13 -05:00

14 lines
271 B
C#

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