mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +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;
|
|
}
|
|
}
|
|
} |