A block comprised of:
try{
; body
}
catch (exception){
}Implemenation
- Try statement takes a snapshot of Stack
- Throw re-instantiates that snapshot of the stack
- If the return value is an exception, it executes the catch statement
A block comprised of:
try{
; body
}
catch (exception){
}