Python - Advanced Exception Handling
Find the error in this code snippet:
def check_number(num):
if num < 0:
raise 'Negative number error'
return 'Number is positive'
print(check_number(-5))