rspec/rules/S1194/java/rule.adoc

26 lines
557 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
``++java.lang.Error++`` and its subclasses represent abnormal conditions, such as ``++OutOfMemoryError++``, which should only be encountered by the Java Virtual Machine.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
public class MyException extends Error { /* ... */ } // Noncompliant
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
public class MyException extends Exception { /* ... */ } // Compliant
----
ifdef::env-github,rspecator-view[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]