Ruby - Error Handling
What will be the output of this Ruby code?
class MyError < StandardError; end begin raise MyError, "Oops!" rescue MyError => e puts e.message end
