PPT Slide
if (someMethod( ) == true) {
if (someOtherMethod( ) == true) {
if (someThirdMethod( ) == true) {
// have not encountered errors; do intended actions
// handle some error caused by someThirdMethod( )
// handle some error caused by someOtherMethod( )
// handle some error caused by someMethod( )
Exceptions--Traditional Methods