]> source.dussan.org Git - sonarqube.git/blob
7e4ee61106260f6b51bf6829d41756f15a01a3a2
[sonarqube.git] /
1 <p> This code creates an exception (or error) object, but doesn't do anything with it. For example,
2 something like </p>
3 <blockquote>
4 <pre>
5 if (x &lt; 0)
6   new IllegalArgumentException("x must be nonnegative");
7 </pre>
8 </blockquote>
9 <p>It was probably the intent of the programmer to throw the created exception:</p>
10 <blockquote>
11 <pre>
12 if (x &lt; 0)
13   throw new IllegalArgumentException("x must be nonnegative");
14 </pre>
15 </blockquote>