rspec/rules/S2302/compliant.adoc
2020-06-30 17:16:12 +02:00

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");
}
}
----