Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 476 Bytes

RCS1075.md

File metadata and controls

28 lines (20 loc) · 476 Bytes

RCS1075: Avoid empty catch clause that catches System.Exception

Property Value
Id RCS1075
Category Design
Severity Warning

Example

Code with Diagnostic

try
{
    Foo();
}
catch (Exception ex) // RCS1075
{
}

See Also

(Generated with DotMarkdown)