rspec/rules/S112/noncompliant.adoc

8 lines
170 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
== Noncompliant Code Example
----
public void foo(String bar) throws Throwable { // Noncompliant
throw new RuntimeException("My Message"); // Noncompliant
}
----