rspec/rules/S2139/csharp/noncompliant.adoc

9 lines
130 B
Plaintext
Raw Normal View History

2024-03-08 17:24:42 +01:00
[source,csharp,diff-id=1,diff-type=noncompliant]
----
try {}
catch (Exception ex)
{
logger.LogError(ex.Message);
throw;
}
----