Don't eat exceptions
This is very bad!
try
{
//do something that will throw an exception, like try to commit data to a database with malformed sql
}
catch
{
//sweep the dirt under the rug ;)
}
Consequences/Results - Your boss will not see any exceptions or code crashes, but it might come back to bite you in the butt when the code doesn't do what it was supposed to!
Additional Sources