mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-03 11:06:50 +01:00
13 lines
271 B
C#
13 lines
271 B
C#
using System.Net;
|
|
using Lidarr.Http.Exceptions;
|
|
|
|
namespace Lidarr.Http.REST
|
|
{
|
|
public class NotFoundException : ApiException
|
|
{
|
|
public NotFoundException(object content = null)
|
|
: base(HttpStatusCode.NotFound, content)
|
|
{
|
|
}
|
|
}
|
|
}
|