Ruby - Error Handling
What will happen when this Ruby code runs?
class MyError < StandardError; end begin raise MyError rescue StandardError puts "Rescued!" end
