Python - Advanced Exception Handling
Find the error in this code snippet:
def divide(a, b):
if b == 0:
raise "Cannot divide by zero"
return a / b
print(divide(10, 0))