Sometimes we ignore exception without intention. For instance,
before():
try {
someMethod();
} finally {
after();
}
If both of someMethod() and after() throws Exception, we will lose exception which is thrown by someMethod(). It will make debug/maintenance difficult.