16 lines
305 B
Plaintext
16 lines
305 B
Plaintext
![]() |
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
void DoSomething(int someParameter)
|
||
|
{
|
||
|
if (someParameter < 0)
|
||
|
{
|
||
|
throw new ArgumentException("Bad argument", nameof(someParameter));
|
||
|
}
|
||
|
if (anotherParam == null)
|
||
|
{
|
||
|
throw new Exception($"{nameof(anotherParam)} should not be null");
|
||
|
}
|
||
|
}
|
||
|
----
|