If you're editing a file which uses \tripod\exceptions this doesn't do what you think it does:
try {
// do something
} catch (Exception $e) {
// log error
}
It actually catches \tripod\exceptions\Exception, not \Exception. Rename the former to be more specific and less bug-prone.