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