Yes, it is common, but in general it shouldn’t be done.
There are exceptions like OutOfMemoryException
which are better not caught, unless you catch them to attempt to terminate your application gracefully.
In the majority of cases, swallowing System.Exception
or System.SystemException
will inevitably hide further run-time problems.