rspec/rules/S2486/cobol/rule.adoc
2020-06-30 17:16:12 +02:00

15 lines
312 B
Plaintext

When error conditions occur, it is usually a bad idea to simply ignore them. Instead, it is better to handle them properly, or at least to log them.
== Noncompliant Code Example
----
EXEC CICS
...
INGNORE CONDITION ERROR *> Noncompliant
END-EXEC.
----
include::../compliant.adoc[]
include::../see.adoc[]