rspec/rules/S112/noncompliant.adoc
2022-02-04 16:28:24 +00:00

9 lines
184 B
Plaintext

== Noncompliant Code Example
[source,text]
----
public void foo(String bar) throws Throwable { // Noncompliant
throw new RuntimeException("My Message"); // Noncompliant
}
----