Python - Custom Exceptions
Find the error in this custom exception usage:
class MyError(Exception):
pass
try:
raise MyError("Oops")
except Exception as e:
print("Error:", e.message)