mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|