handler-bind vs. handler-case
handler in handler-bind run in context of error
- can decline to handle the condition
- OR can fix things up and continue
handler in handler-case runs when stack already unwound
- In this case, the handler always applies, it cannot decline to handle the condition