Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateStartOrEndArgumentValidationException()

static Exception System.ThrowHelper.CreateStartOrEndArgumentValidationException ( long start)
inlinestaticprivate

Definition at line 145 of file ThrowHelper.cs.

146 {
147 if (start < 0)
148 {
149 return CreateArgumentOutOfRangeException(System.ExceptionArgument.start);
150 }
151 return CreateArgumentOutOfRangeException(System.ExceptionArgument.length);
152 }
static Exception CreateArgumentOutOfRangeException(System.ExceptionArgument argument)

References System.ThrowHelper.CreateArgumentOutOfRangeException(), and System.start.

Referenced by System.ThrowHelper.ThrowStartOrEndArgumentValidationException().