Python - Custom Exceptions
Identify the issue in this code snippet:
try:
result = 10 / 0
except ZeroDivisionError as e:
print('Zero division:', e)
except Exception as e:
print('General error:', e)