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

org.sonar.l10n.java.rules.squid.S1194.html Maven / Gradle / Ivy

There is a newer version: 8.9.0.37768
Show newest version

java.lang.Error and its subclasses represent abnormal conditions, such as OutOfMemoryError, which should only be encountered by the Java Virtual Machine.

Noncompliant Code Example

public class MyException extends Error { /* ... */ }       // Noncompliant

Compliant Solution

public class MyException extends Exception { /* ... */ }   // Compliant




© 2015 - 2025 Weber Informatics LLC | Privacy Policy