19.3.2 (cont.) catch Clauses
- Examined top to bottom
- Executes the first handler that matches, then stops processing
that exception
- Match derived class before its base class
- If uncaught, the previous try block is examined
- If call stack is unwound, std::terminate is called
- May specify your own by using std::set_terminate
prev
|top
|next