Ruby - Error Handling
Identify the problem in this Ruby code snippet:
begin # code rescue ZeroDivisionError puts 'Zero division error' rescue puts 'Generic error' rescue IOError puts 'IO error' end
