Where is the rescue method?
ruby
Solution
`rescue` is not a method. It is a keyword, hard-wired into Ruby.
Problem
I can't find `rescue` in any of the Ruby objects. I can find `raise` by doing: ``` Kernel.private_instance_methods.grep(/^rai/) ``` But, where is rescue?