org.sonar.l10n.java.rules.squid.S1194.html Maven / Gradle / Ivy
The 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 { /* ... */ } // Non-Compliant
Compliant Solution
public class MyException extends Exception { /* ... */ } // Compliant
© 2015 - 2025 Weber Informatics LLC | Privacy Policy