rspec/rules/S2139/csharp/noncompliant.adoc
2024-03-08 17:24:42 +01:00

9 lines
130 B
Plaintext

[source,csharp,diff-id=1,diff-type=noncompliant]
----
try {}
catch (Exception ex)
{
logger.LogError(ex.Message);
throw;
}
----