mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-03-09 15:06:22 +00:00
14 lines
271 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|