mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
14 lines
327 B
C#
14 lines
327 B
C#
using System;
|
|
using NzbDrone.Common.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public class ModelNotFoundException : NzbDroneException
|
|
{
|
|
public ModelNotFoundException(Type modelType, int modelId)
|
|
: base("{0} with ID {1} does not exist", modelType.Name, modelId)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |