rspec/rules/S3984/csharp/rule.adoc
2022-02-04 16:28:24 +00:00

33 lines
547 B
Plaintext

Creating a new ``++Exception++`` without actually throwing it is useless and is probably due to a mistake.
== Noncompliant Code Example
[source,csharp]
----
if (x < 0)
{
new ArgumentException("x must be nonnegative");
}
----
== Compliant Solution
[source,csharp]
----
if (x < 0)
{
throw new ArgumentException("x must be nonnegative");
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
endif::env-github,rspecator-view[]