Skip to content

Commit

Permalink
Instantiate argument exceptions correctly
Browse files Browse the repository at this point in the history
Signed-off-by: Corniel Nobel <[email protected]>
  • Loading branch information
Corniel committed Jan 24, 2025
1 parent 6722835 commit 759fb7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runtime/CSharp/src/Atn/Transition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected internal Transition(ATNState target)
{
if (target == null)
{
throw new ArgumentNullException("target cannot be null.");
throw new ArgumentNullException(nameof(target), "target cannot be null.");
}
this.target = target;
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/CSharp/src/BufferedTokenStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public BufferedTokenStream(ITokenSource tokenSource)
{
if (tokenSource == null)
{
throw new ArgumentNullException("tokenSource cannot be null");
throw new ArgumentNullException(nameof(tokenSource), "tokenSource cannot be null");
}
this._tokenSource = tokenSource;
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/CSharp/src/ListTokenSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public ListTokenSource(IList<IToken> tokens, string sourceName)
{
if (tokens == null)
{
throw new ArgumentNullException("tokens cannot be null");
throw new ArgumentNullException(nameof(tokens), "tokens cannot be null");
}
this.tokens = tokens;
this.sourceName = sourceName;
Expand Down

0 comments on commit 759fb7e

Please sign in to comment.