Assertions
using System;
namespace Relativity.Transfer
{
internal static class Assertions
{
internal static void RequireNonNull<TValue>(TValue value, string argumentName) where TValue : class
{
if (value == null)
throw new ArgumentNullException(argumentName);
}
}
}