Ruby - Error Handling
Identify the error in this Ruby code:
class MyError < StandardError end begin raise MyError, "Error occurred" rescue MyError => e puts e.message end
