rspec/rules/S3984/csharp/rule.adoc
2020-12-23 14:59:06 +01:00

20 lines
314 B
Plaintext

Creating a new ``Exception`` without actually throwing it is useless and is probably due to a mistake.
== Noncompliant Code Example
----
if (x < 0)
{
new ArgumentException("x must be nonnegative");
}
----
== Compliant Solution
----
if (x < 0)
{
throw new ArgumentException("x must be nonnegative");
}
----