Ruby - Error Handling
Identify the error in this Ruby code with multiple rescue clauses:
begin puts 'Start' rescue puts 'Rescue block' rescue ZeroDivisionError puts 'Zero division error' end
