Hello Programmers,
Hiding exceptions is a sin. Don’t do it unless you want to be tagged as a bad developer.
If you don’t understand what I am talking about, here is the code snippet.

try
{
int i = 10/0;
}
catch(Exception e)
{
//Do Nothing – Please don’t do this!!
}
Moral: Always throw the exceptions and log them. It will get incredibly hard to spot the issue while debugging if you try to hide the exceptions.