0xfadedace·10 ปีที่แล้ว·discussA convention I've seen in Java libraries and that I'm fond of is: public sort() { preconds() try { doSort() } catch (ex) { handle(ex) } postconds() } private doSort() throws Exception { // core impl }