Lidarr/src/Lidarr.Http/REST/NotFoundException.cs
2021-09-26 19:56:50 -04:00

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)
{
}
}
}