All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.squidjava.rules.squid.S1147.html Maven / Gradle / Ivy

Calling System.exit(int status) or Rutime.getRuntime().exit(int status) leads to the shut down of the entire Java virtual machine. It should be used with care, when stopping the whole Java process is meant. For instance, it should not be called from applications running in a J2EE container.

Noncompliant Code Example

System.exit(0);
Runtime.getRuntime().exit(0);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy