mirror of https://github.com/lidarr/Lidarr
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;
|
|
}
|
|
}
|
|
} |