mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
17 lines
492 B
C#
17 lines
492 B
C#
|
using System.Diagnostics;
|
||
|
using NzbDrone.Common.EnsureThat.Resources;
|
||
|
|
||
|
namespace NzbDrone.Common.EnsureThat
|
||
|
{
|
||
|
public static class EnsureObjectExtensions
|
||
|
{
|
||
|
[DebuggerStepThrough]
|
||
|
public static Param<T> IsNotNull<T>(this Param<T> param) where T : class
|
||
|
{
|
||
|
if (param.Value == null)
|
||
|
throw ExceptionFactory.CreateForParamNullValidation(param.Name, ExceptionMessages.EnsureExtensions_IsNotNull);
|
||
|
|
||
|
return param;
|
||
|
}
|
||
|
}
|
||
|
}
|