rspec/rules/S2737/php/compliant.adoc
Fred Tingaud ad4a486e52
Modify Rule S2737: LaYC catch rethrow
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
Co-authored-by: Dorian Burihabwa <75226315+dorian-burihabwa-sonarsource@users.noreply.github.com>
2023-06-22 14:04:34 +02:00

18 lines
240 B
Plaintext

[source,php]
----
$s = readMyFile($fileName);
----
or
[source,php]
----
$s = "";
try {
$s = readMyFile($fileName);
} catch (Exception $e) {
error_log($e->getMessage());
throw new MyException("an exception occurred", 2, $e);
}
----