jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Exceptions/NotFoundException.cs

10 lines
273 B
C#

namespace TMDbLib.Objects.Exceptions
{
public class NotFoundException : APIException
{
public NotFoundException(TMDbStatusMessage statusMessage)
: base("The requested item was not found", statusMessage)
{
}
}
}