Python - Custom Exceptions
Identify the problem in this code:
try:
x = int('abc')
except ValueError:
print('Value error')
except:
print('General error')
except Exception:
print('Exception')