Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 440 Bytes

RCS1044.md

File metadata and controls

37 lines (29 loc) · 440 Bytes

RCS1044: Remove original exception from throw statement

Property Value
Id RCS1044
Severity Warning

Example

Code with Diagnostic

try
{
    Foo();
}
catch (Exception ex)
{
    throw ex; // RCS1044
}

Code with Fix

try
{
    Foo();
}
catch (Exception ex)
{
    throw;
}

(Generated with DotMarkdown)