using System.Diagnostics; using NzbDrone.Common.EnsureThat.Resources; namespace NzbDrone.Common.EnsureThat { public static class EnsureObjectExtensions { [DebuggerStepThrough] public static Param IsNotNull(this Param param) where T : class { if (param.Value == null) { throw ExceptionFactory.CreateForParamNullValidation(param.Name, ExceptionMessages.EnsureExtensions_IsNotNull); } return param; } } }