Property | Value |
---|---|
Id | RCS1044 |
Severity | Warning |
try
{
Foo();
}
catch (Exception ex)
{
throw ex; // RCS1044
}
try
{
Foo();
}
catch (Exception ex)
{
throw;
}
(Generated with DotMarkdown)
Property | Value |
---|---|
Id | RCS1044 |
Severity | Warning |
try
{
Foo();
}
catch (Exception ex)
{
throw ex; // RCS1044
}
try
{
Foo();
}
catch (Exception ex)
{
throw;
}
(Generated with DotMarkdown)