== Compliant Solution [source,text] ---- 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"); } } ----