mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
d93bd52a01
New: Remove items from queue/history from Activity New: Force import of series title mismatch from Activity
13 lines
275 B
C#
13 lines
275 B
C#
using Nancy;
|
|
using NzbDrone.Api.ErrorManagement;
|
|
|
|
namespace NzbDrone.Api.REST
|
|
{
|
|
public class NotFoundException : ApiException
|
|
{
|
|
public NotFoundException(object content = null)
|
|
: base(HttpStatusCode.NotFound, content)
|
|
{
|
|
}
|
|
}
|
|
} |