11 lines
258 B
C#
11 lines
258 B
C#
using System;
|
|
|
|
namespace AspClassic.Scripting.Utils;
|
|
|
|
internal static class ExceptionUtils
|
|
{
|
|
public static ArgumentNullException MakeArgumentItemNullException(int index, string arrayName)
|
|
{
|
|
return new ArgumentNullException($"{arrayName}[{index}]");
|
|
}
|
|
}
|