-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
modernizationBetter C# practices for the codebaseBetter C# practices for the codebase
Description
The codebase has many naked catch aka
try
{
// snipped
}
catch
{
}
This pattern is wrong because the catch might intercept anything, and possibly unrelated problems like OutOfMemoryException which should not be caught.
All those naked catches should be removed; replaced by exception-specific catches.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
modernizationBetter C# practices for the codebaseBetter C# practices for the codebase