mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-15 09:20:47 +02:00
13 lines
275 B
C#
13 lines
275 B
C#
using System.Net;
|
|
using Prowlarr.Http.Exceptions;
|
|
|
|
namespace Prowlarr.Http.REST
|
|
{
|
|
public class NotFoundException : ApiException
|
|
{
|
|
public NotFoundException(object content = null)
|
|
: base(HttpStatusCode.NotFound, content)
|
|
{
|
|
}
|
|
}
|
|
}
|