
org.sonar.l10n.java.rules.java.S3984.html Maven / Gradle / Ivy
Why is this an issue?
Creating a new Throwable
without actually throwing it is useless and is probably due to a mistake.
Noncompliant code example
if (x < 0)
new IllegalArgumentException("x must be nonnegative");
Compliant solution
if (x < 0)
throw new IllegalArgumentException("x must be nonnegative");
© 2015 - 2025 Weber Informatics LLC | Privacy Policy