First page Back Continue Last page Graphics
13.2 Exception-Handling Overview
Throw point
- Location in try block where exception occurred
- If exception handled
- Program skips remainder of try block
- Resumes after catch blocks
- If not handled
- Function terminates
- Looks for enclosing catch block (stack unwinding, 13.8)
If no exception
- Program skips catch blocks