You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
501 B
18 lines
501 B
using System;
|
|
using System.Diagnostics;
|
|
using NzbDrone.Common.EnsureThat.Resources;
|
|
|
|
namespace NzbDrone.Common.EnsureThat
|
|
{
|
|
public static class EnsureGuidExtensions
|
|
{
|
|
[DebuggerStepThrough]
|
|
public static Param<Guid> IsNotEmpty(this Param<Guid> param)
|
|
{
|
|
if (Guid.Empty.Equals(param.Value))
|
|
throw ExceptionFactory.CreateForParamValidation(param.Name, ExceptionMessages.EnsureExtensions_IsEmptyGuid);
|
|
|
|
return param;
|
|
}
|
|
}
|
|
} |